bemade-addons/openai_connector/models/res_company.py
2024-11-16 06:45:41 -05:00

9 lines
No EOL
378 B
Python

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-'")