-
Notifications
You must be signed in to change notification settings - Fork 399
feat:Macae v3 fr dev 92 #450
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved plan retrieval endpoints from app_kernel.py to v3/api/router.py and refactored them for v3 API. Updated DataType enum values for consistency. Adjusted frontend API service to use new v3 endpoints and removed unused agent message and message methods.
Deleted all files in src/backend/kernel_agents and src/backend/kernel_tools, and updated imports in app_kernel.py and router.py to remove references to these modules. This refactor likely consolidates or replaces agent and tool logic elsewhere in the codebase.
Deleted the submitInputTask methods from APIService and TaskService as they are no longer used. This helps clean up the codebase and reduces maintenance overhead.
The Plan object now assigns team_id based on the user's current team retrieved from the memory store, instead of defaulting to None. This ensures plans are correctly associated with the user's active team.
Deleted several agent-related models and request/response classes from messages_kernel.py that are no longer used. Also removed the AgentType enum from orchestration_models.py to clean up unused code and improve maintainability.
Introduces the WebsocketMessageType enum for consistent message typing across WebSocket communications. Refactors response handlers, connection management, and orchestration modules to utilize message_type for improved clarity and extensibility. Also removes an unused __init__.py file from common services.
Replaced the UUID-based timestamp with the event loop's time from asyncio for the final result message. This provides a more accurate and relevant timestamp for message completion.
Standardizes WebSocket message types using the WebsocketMessageType enum across multiple modules. Refactors message sending to include explicit message type and data structure, and updates API endpoint for plan retrieval. Fixes and improves consistency in how messages are sent and handled throughout the backend.
marktayl1
approved these changes
Sep 6, 2025
|
🎉 This PR is included in version 2.2.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information