@@ -22,7 +22,7 @@ def agent_upsert_dump() -> dict[str, Any]:
2222 "description" : "A test agent" ,
2323 "instructions" : "Test instructions" ,
2424 "model" : "gpt-4" ,
25- "runtimeVersion" : "1.1.1 " ,
25+ "runtimeVersion" : "1.2.0 " ,
2626 "tools" : [
2727 { # Valid queryKnowledgeGraph tool
2828 "name" : "test_tool" ,
@@ -59,7 +59,7 @@ def agent_minimal_dump() -> dict[str, Any]:
5959 return {
6060 "externalId" : "test_agent" ,
6161 "name" : "Test Agent" ,
62- "runtimeVersion" : "1.1.1 " ,
62+ "runtimeVersion" : "1.2.0 " ,
6363 "createdTime" : 667008000000 ,
6464 "lastUpdatedTime" : 667008000001 ,
6565 "ownerId" : "owner_minimal" ,
@@ -75,7 +75,7 @@ def test_load_dump(self, agent_upsert_dump: dict[str, Any]) -> None:
7575 assert agent .description == "A test agent"
7676 assert agent .instructions == "Test instructions"
7777 assert agent .model == "gpt-4"
78- assert agent .runtime_version == "1.1.1 "
78+ assert agent .runtime_version == "1.2.0 "
7979 assert agent .tools
8080 assert len (agent .tools ) == 1
8181 assert isinstance (agent .tools [0 ], AgentToolUpsert )
@@ -135,7 +135,7 @@ def test_load_dump(self, agent_dump: dict[str, Any]) -> None:
135135 assert agent .description == "A test agent"
136136 assert agent .instructions == "Test instructions"
137137 assert agent .model == "gpt-4"
138- assert agent .runtime_version == "1.1.1 "
138+ assert agent .runtime_version == "1.2.0 "
139139 assert agent .tools
140140 assert len (agent .tools ) == 1
141141 assert isinstance (agent .tools [0 ], AgentTool )
@@ -164,7 +164,7 @@ def test_load_dump_maintain_unknown_properties(self) -> None:
164164 agent_data = {
165165 "externalId" : "test_agent" ,
166166 "name" : "Test Agent" ,
167- "runtimeVersion" : "1.1.1 " ,
167+ "runtimeVersion" : "1.2.0 " ,
168168 "unknownProperty" : "unknown_value" ,
169169 "createdTime" : 123 ,
170170 "lastUpdatedTime" : 123 ,
0 commit comments