-
Notifications
You must be signed in to change notification settings - Fork 62
Adds endpoint to get an agent run's data #1197
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
Codecov Report❌ Patch coverage is |
| from codegen.cli.auth.token_manager import get_current_token | ||
| from codegen.cli.auth.token_manager import get_current_org_name, get_current_token | ||
| from codegen.cli.rich.spinners import create_spinner | ||
| from codegen.cli.utils.org import resolve_org_id |
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.
Import error: get_current_org_name does not exist in token_manager
This import will raise ImportError at runtime.
| from codegen.cli.utils.org import resolve_org_id | |
| from codegen.cli.auth.token_manager import get_current_token # get_current_org_name removed (implement separately if required) |
| from codegen.cli.auth.token_manager import get_current_org_name, get_current_token | ||
| from codegen.cli.rich.spinners import create_spinner | ||
| from codegen.cli.utils.org import resolve_org_id | ||
|
|
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.
Import error: codegen.cli.utils.org module and resolve_org_id function are missing
This import will raise ImportError during CLI startup.
| # TODO: implement `resolve_org_id` or import from correct module |
|
Found 2 issues. Please review my inline comments above. |
|
🎉 This PR is included in version 0.56.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Motivation
Content
Testing
Please check the following before marking your PR as ready for review