feat(agent-runner): enforce 4.x host-owned execution

This commit is contained in:
huanghuoguoguo
2026-07-12 20:36:32 +08:00
parent e6384aae5d
commit 99d9c227f9
171 changed files with 6958 additions and 5385 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ class TestVectorDatabaseAbstractMethods:
# list_by_filter should return empty list and -1 for total
import asyncio
result = asyncio.get_event_loop().run_until_complete(db.list_by_filter('test_collection'))
result = asyncio.run(db.list_by_filter('test_collection'))
assert result == ([], -1)