File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ class ChatMcp(ChatQuestion):
321321
322322class McpDs (BaseModel ):
323323 token : str = Body (description = '用户token' )
324- oid : Optional [int | str ] = Body (description = '组织ID,如果不传则为最后一次登录SQLBot时所使用的组织ID' , default = None )
324+ oid : Optional [str ] = Body (description = '组织ID,如果不传则为最后一次登录SQLBot时所使用的组织ID' , default = None )
325325
326326
327327class ChatStart (BaseModel ):
@@ -336,7 +336,7 @@ class McpQuestion(BaseModel):
336336 stream : Optional [bool ] = Body (description = '是否流式输出,默认为true开启, 关闭false则返回JSON对象' , default = True )
337337 lang : Optional [str ] = Body (description = '语言:zh-CN|en|ko-KR' , default = 'zh-CN' )
338338 datasource_id : Optional [int | str ] = Body (description = '数据源ID,仅当当前对话没有确定数据源时有效' , default = None )
339- oid : Optional [int | str ] = Body (
339+ oid : Optional [str ] = Body (
340340 description = '组织ID,仅当数据源ID为空时有效,如果不传则为最后一次登录SQLBot时所使用的组织ID' , default = None )
341341
342342
You can’t perform that action at this time.
0 commit comments