mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
13 lines
329 B
Python
13 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class GptRobot(models.Model):
|
|
_name = 'gpt.robot'
|
|
_description = 'Gpt Robot'
|
|
|
|
name = fields.Char(string='Name')
|
|
openapi_api_key = fields.Char(string="API Key", help="Provide the API key here")
|
|
temperature = fields.Float(string='Temperature')
|