Merged
Conversation
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. ℹ️ You can also turn on project coverage checks and project coverage reporting on Pull Request comment Thanks for integrating Codecov - We've got you covered ☂️ |
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
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.
This pull request makes significant changes to the codebase to improve modularity, update imports for a reorganized AgentFlow structure, and enhance configuration and error handling. The most important updates include refactoring imports to match the new AgentFlow package layout, cleaning up legacy compatibility code, updating configuration management (especially for JWT and media settings), and adding startup cleanup for temporary media cache entries.
Key changes:
1. AgentFlow Import Refactoring
agentflow.core,agentflow.storage, and related submodules instead of the old flatagentflow.*structure. This affects routers, services, schemas, and utility modules, ensuring compatibility with the reorganized AgentFlow library. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]2. Media Handling and Compatibility Cleanup
media/_compat.pyfile and related aliasing logic, standardizing onDocumentHandling.FORWARD_RAWand updating all references accordingly. [1] [2] [3] [4]media/tosrc/app/utils/media/, reflecting a clearer project structure. [1] [2]3. Configuration and Settings Improvements
JWT_SECRET_KEY,JWT_ALGORITHM) to the mainSettingsclass, and refactored JWT authentication code to use these settings instead of environment variables. [1] [2] [3] [4] [5]BaseSettingssubclasses to usemodel_config = ConfigDict(extra="allow")for Pydantic v2 compatibility, replacing the oldConfiginner class. [1] [2]4. Error Handling and Logging Enhancements
UnsupportedMediaInputErrorin the graph service, returning a 422 HTTP error with a clear message.main.pyand added a startup routine to clean up expired temporary media cache entries, with robust error handling and informative log messages. [1] [2] [3] [4]5. Coverage and Testing Configuration
.coveragercto reflect the newagentflow_clisource directory, improved omit patterns, and added support for multiple source paths and better reporting of missing lines.These changes collectively modernize the codebase, improve maintainability, and ensure compatibility with the latest AgentFlow and Pydantic versions.