-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat: introduce agent orchestrator to bridge agents and backend server #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…allback functionality
…aming and listener setup
…t manager function
…ation handling, and add comprehensive tests for AgentOrchestrator
…ng in AgentOrchestrator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces an agent orchestrator system that provides a unified interface for coordinating interactions between agents and the backend server. The orchestrator manages session and task lifecycle, handles both local and remote agent communication, and provides streaming responses for real-time interaction.
Key changes include:
- Introduces comprehensive type system with unified data models for user input, agents, and responses
- Implements session and task management with in-memory storage
- Creates agent orchestrator with execution planning and streaming capabilities
Reviewed Changes
Copilot reviewed 27 out of 28 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| python/valuecell/core/types.py | Defines unified type system with user input models, agent abstractions, and response types |
| python/valuecell/core/task/*.py | Implements task management with models, storage, and lifecycle operations |
| python/valuecell/core/session/*.py | Provides session management with message handling and storage |
| python/valuecell/core/coordinate/*.py | Creates orchestrator system with execution planning and agent coordination |
| python/valuecell/core/agent/*.py | Updates agent system to use unified types and enhanced connection management |
| python/valuecell/agents/*.py | Updates existing agents to use new type system |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
… concurrency handling
No description provided.