Files
app-odoo/app_chatgpt/models/res_config_settings.py
ivan deng c64e65db2d add gpt
2023-03-02 18:51:05 +08:00

11 lines
424 B
Python

# -*- coding: utf-8 -*-
# Copyright (c) 2020-Present InTechual Solutions. (<https://intechualsolutions.com/>)
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
openapi_context_timeout = fields.Integer(string="上下文连接超时", help="多少秒以内的聊天信息作为上下文继续", config_parameter="app_chatgpt.openapi_context_timeout")