-
Notifications
You must be signed in to change notification settings - Fork 900
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
Executions queries #993
Executions queries #993
Conversation
CI Failure Feedback 🧐(Checks updated until commit 268fd3f)
✨ CI feedback usage guide:The CI feedback tool (
In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:
where Configuration options
See more information about the |
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.
👍 Looks good to me! Reviewed everything up to e962645 in 33 seconds
More details
- Looked at
589
lines of code in18
files - Skipped
0
files when reviewing. - Skipped posting
7
drafted comments based on config settings.
1. agents-api/agents_api/queries/executions/count_executions.py:16
- Draft comment:
The removal ofsqlglot
for parsing SQL queries is fine if parsing is not needed. Ensure that this change is consistent across the codebase and update any related documentation or comments. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes the use ofsqlglot
for parsing SQL queries, which is a valid change if the parsing is not needed. However, the PR does not update the comments or documentation to reflect this change. Additionally, the PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness.
2. agents-api/agents_api/queries/executions/create_temporal_lookup.py:56
- Draft comment:
The removal of thedeveloper_id
parameter seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
3. agents-api/agents_api/queries/executions/get_execution_transition.py:62
- Draft comment:
The removal of thedeveloper_id
parameter seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
4. agents-api/agents_api/queries/executions/get_paused_execution_token.py:40
- Draft comment:
The removal of thedeveloper_id
parameter seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
5. agents-api/agents_api/routers/tasks/create_task_execution.py:147
- Draft comment:
The removal of thedeveloper_id
parameter fromcreate_temporal_lookup
seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
6. agents-api/tests/fixtures.py:279
- Draft comment:
The removal of thedeveloper_id
parameter fromcreate_temporal_lookup
seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
7. agents-api/tests/test_execution_queries.py:48
- Draft comment:
The removal of thedeveloper_id
parameter fromcreate_temporal_lookup
seems intentional. Ensure that this change is consistent across the codebase and does not affect any functionality. - Reason this comment was not posted:
Confidence changes required:50%
The PR removes thedeveloper_id
parameter from several functions, which seems intentional but should be verified for correctness. This change should be consistent across the codebase.
Workflow ID: wflow_nOjvR4yL5EVLCzkQ
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
PR Type
Bug fix, Enhancement
Description
Changes walkthrough 📝
*.py
Optimize and clean up execution query files
agents-api/agents_api/queries/executions/*.py
*.py
Clean up task routers and execution handling
agents-api/agents_api/routers/tasks/*.py
000013_executions_continuous_view.up.sql
Update executions continuous view schema
memory-store/migrations/000013_executions_continuous_view.up.sql
*
Add and update execution-related tests
agents-api/tests/*