-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Test emit code #44639
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
Open
howieleung
wants to merge
12
commits into
main
Choose a base branch
from
howie/emit
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Test emit code #44639
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d4c1fd1
Test emit code
howieleung 1152e9f
Refactor memory store usage details to use response models
howieleung 084cecb
fix test
howieleung b65c295
Refactor agent tool names in samples and tests to use updated preview…
howieleung 56f62f4
Refactor CodeInterpreterTool references to use CodeInterpreterContain…
howieleung a7f36c5
Update references from ResponseTextFormatConfigurationJsonSchema to T…
howieleung 761ee19
fix
howieleung 818f870
ResponseFormatJsonSchemaSchema
howieleung e7acb23
fix
howieleung 96eb41e
Refactor: Update imports and remove unused ResponseFormatJsonSchemaSc…
howieleung 4dc0b38
Refactor: Update TextResponseFormatJsonSchema to include schema field…
howieleung 3eb33db
feat: Add streaming logs functionality for agent containers and intro…
howieleung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
The use of a bare except clause is a security and maintainability concern. While pylint is disabled for this line, bare except clauses can catch system exceptions like SystemExit and KeyboardInterrupt, making it difficult to terminate the program. Consider catching specific exceptions instead, such as
(TypeError, AttributeError, IndexError)which are likely the exceptions that could be raised when checking the deserializer structure.