Merged
Conversation
|
GitHub CI seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This is a v0.62.0 release PR that consolidates evaluation-related code from the EE (enterprise edition) to the OSS (open source) layer, enabling evaluation features in the open-source version.
Key changes:
- Moves evaluation database models, services, and API routes from
ee/tooss/directories - Adds conditional EE feature checks using
is_ee()guards - Introduces new cron job configuration for query-based evaluations
- Updates package versions to 0.62.0 across the codebase
Reviewed Changes
Copilot reviewed 50 out of 414 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
| web/oss/package.json, web/ee/package.json, sdk/pyproject.toml, api/pyproject.toml | Version bumps to 0.62.0 |
| api/oss/src/models/db_models.py | Adds evaluation database models previously in EE |
| api/oss/src/services/db_manager.py | Adds 750+ lines of evaluation service functions |
| api/oss/src/services/converters.py | New file with evaluation data converters |
| api/oss/src/services/evaluation_service.py | Updates imports from ee. to oss. |
| api/oss/src/routers/evaluation_router.py | Updates imports from ee. to oss. |
| api/entrypoint.py | Registers evaluation routers and imports evaluation tasks |
| api/ee/src/services/db_manager_ee.py | Removes 755 lines of evaluation functions moved to OSS |
| api/ee/src/models/db_models.py | Removes evaluation models moved to OSS |
| web/oss/src/components/Sidebar/hooks/useSidebarConfig/index.tsx | Unhides evaluators/evaluations menu items |
| hosting/docker-compose/*.yml | Adds new cron service configuration |
| sdk/agenta/sdk/tracing/exporters.py | Changes async export default to "true" |
Comments suppressed due to low confidence (1)
api/oss/src/apis/fastapi/evaluators/router.py:333
- [nitpick] The
if is_ee():check is added butcheck_action_accessis still called unconditionally in the nested if. This creates unnecessary nesting; consider restructuring the logic.
if is_ee():
if not await check_action_access( # type: ignore
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
junaway
approved these changes
Nov 11, 2025
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.
release/v0.62.0