File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33import models .api .requests as r
44import models .api .responses .error as e
55import models .api .responses .successful as s
6+ import models .common as c
67import models .compaction as models_compaction
78from utils .openapi_schema_dumper import dump_openapi_schema
89
@@ -98,6 +99,27 @@ def dump_models(filename: str) -> None:
9899 e .ServiceUnavailableResponse ,
99100 e .UnauthorizedResponse ,
100101 e .UnprocessableEntityResponse ,
102+ c .Attachment ,
103+ c .ConversationData ,
104+ c .ConversationDetails ,
105+ c .ConversationTurn ,
106+ c .MCPListToolsSummary ,
107+ c .MCPServerAuthInfo ,
108+ c .MCPServerInfo ,
109+ c .Message ,
110+ c .ProviderHealthStatus ,
111+ c .RAGChunk ,
112+ c .RAGContext ,
113+ c .ReferencedDocument ,
114+ c .ShieldModerationBlocked ,
115+ c .ShieldModerationPassed ,
116+ c .SolrVectorSearchRequest ,
117+ c .ToolCallSummary ,
118+ c .ToolInfoSummary ,
119+ c .ToolResultSummary ,
120+ c .Transcript ,
121+ c .TranscriptMetadata ,
122+ c .TurnSummary ,
101123 ]:
102124 models .append (model )
103125 dump_openapi_schema (models , filename )
You can’t perform that action at this time.
0 commit comments