bemade-addons/openai_connector/models/res_company.py

9 lines
378 B
Python
Raw Normal View History

2024-11-16 06:45:41 -05:00
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
api_key = fields.Char(string="API Key", help="API Key for OpenAI specific to this company. It should start with 'sk-'")
organization = fields.Char(string="Organization ID", help="Organization ID for OpenAI specific to this company. It should start with 'org-'")