forked from openai/openai-python
-
Notifications
You must be signed in to change notification settings - Fork 0
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
sync #3
Merged
Merged
sync #3
Conversation
This file contains 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 commit adds support for JSON schema response format & adds a separate `.beta.chat.completions.parse()` method to automatically deserialise the response content into a Pydantic model. For more details on structured outputs, see this guide https://platform.openai.com/docs/guides/structured-outputs
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.
Development Environment Enhancements:
.devcontainer/Dockerfile
: Added a Dockerfile to set up a development container with Python 3.9 and Rye for dependency management..devcontainer/devcontainer.json
: Configured the development container with VS Code settings and extensions, and a post-start command to sync dependencies.GitHub Workflow Improvements:
.github/workflows/ci.yml
: Introduced a CI workflow to lint and test the codebase on push and pull request events..github/workflows/create-releases.yml
: Added a workflow to create releases on a scheduled basis and on push events to the main branch..github/workflows/publish-pypi.yml
: Created a workflow for publishing to PyPI, triggered manually via workflow dispatch..github/workflows/release-doctor.yml
: Implemented a workflow to check the release environment, ensuring all necessary conditions are met before publishing.Issue Template Updates:
.github/ISSUE_TEMPLATE/bug_report.yml
: Updated the bug report template to include a confirmation checkbox for library-specific issues and updated placeholders for Python and library versions. [1] [2].github/ISSUE_TEMPLATE/feature_request.yml
: Modified the feature request template to include a confirmation checkbox for library-specific feature requests.These changes collectively enhance the development workflow, streamline release management, and improve the clarity of issue reporting.