refactor: reorganize agent services into agent_coordination package and improve error handling
- Moved agent services to agent_coordination bounded context package: - agent_integration.py → agent_coordination/integration.py - agent_performance_service.py → agent_coordination/performance.py - agent_service.py → agent_coordination/agent_service.py - agent_security.py → agent_coordination/security.py - Deleted agent_communication.py (988 lines removed) - Updated import paths across routers to use new agent
This commit is contained in:
@@ -90,7 +90,7 @@ def run_tests():
|
||||
log("Running test suites...")
|
||||
results = []
|
||||
repo_root = Path(REPO_DIR)
|
||||
for pkg in ['aitbc-core', 'aitbc-sdk', 'aitbc-crypto']:
|
||||
for pkg in ['aitbc-sdk', 'aitbc-crypto']:
|
||||
package_root = repo_root / 'packages' / 'py' / pkg
|
||||
testdir = package_root / 'tests'
|
||||
if not testdir.exists():
|
||||
|
||||
Reference in New Issue
Block a user