File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121from models .common .query import Attachment , SolrVectorSearchRequest
2222from models .common .shields import CatalogShield
2323from models .common .skills import SkillMetadata
24+ from models .common .tools import (
25+ CatalogTool ,
26+ CatalogToolParameter ,
27+ ListedMcpTool ,
28+ )
2429from models .common .transcripts import Transcript , TranscriptMetadata
2530from models .common .turn_summary import (
2631 MCPListToolsSummary ,
3742 "Attachment" ,
3843 "CatalogModel" ,
3944 "CatalogShield" ,
45+ "CatalogTool" ,
46+ "CatalogToolParameter" ,
4047 "ConversationData" ,
4148 "ConversationDetails" ,
4249 "ConversationTurn" ,
4350 "FeedbackCategory" ,
4451 "HealthStatus" ,
52+ "ListedMcpTool" ,
4553 "MCPListToolsSummary" ,
4654 "MCPServerAuthInfo" ,
4755 "MCPServerInfo" ,
Original file line number Diff line number Diff line change 108108
109109common_models : list [type [BaseModel ]] = [
110110 c .Attachment ,
111+ c .CatalogModel ,
112+ c .CatalogShield ,
111113 c .ConversationData ,
112114 c .ConversationDetails ,
113115 c .ConversationTurn ,
129131 c .Transcript ,
130132 c .TranscriptMetadata ,
131133 c .TurnSummary ,
134+ c .CatalogTool ,
135+ c .CatalogToolParameter ,
136+ c .ListedMcpTool ,
132137]
133138
134139agents_models : list [type [BaseModel ]] = [
Original file line number Diff line number Diff line change @@ -10439,6 +10439,9 @@ def test_dump_models_group_common(tmpdir: Path) -> None:
1043910439 "Transcript",
1044010440 "TranscriptMetadata",
1044110441 "TurnSummary",
10442+ "CatalogTool",
10443+ "CatalogToolParameter",
10444+ "ListedMcpTool",
1044210445 ]
1044310446 check_json_file_content(filename, expected_schemas)
1044410447
You can’t perform that action at this time.
0 commit comments