PGVector: add some changes to readme#45636
Merged
Aldo Gonzalez (aldogonzalez8) merged 4 commits intoSep 23, 2024
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Serhii Lazebnyi (lazebnyi)
approved these changes
Sep 23, 2024
Contributor
Author
|
/approve-regression-tests
|
Contributor
Author
|
/approve-regression-tests
|
| ) | ||
| default_schema: str = Field( | ||
| ..., | ||
| default="public", |
Contributor
Author
There was a problem hiding this comment.
In Pydantic, ... is used to indicate that a field is required, while default is used to provide a default value.
These two are mutually exclusive. If a field is required (...), you cannot also provide a default value, as it creates a contradiction: the field cannot be both required and have a default.
Contributor
Author
There was a problem hiding this comment.
Just commenting if somebody is curious as I was getting TypeError: Field() got multiple values for keyword argument 'default'
Mike Saffitz (msaffitz)
added a commit
to Encore-Post-Sales/airbyte-magnify
that referenced
this pull request
May 29, 2025
* commit '59e981a72915dc57461250c62b60d3a8a04b5b0b': (6181 commits) docs(source-intercom): Update outdated URLs in docs (airbytehq#45858) 🤖 Cut version 5.7.1 of source-declarative-manifest 🤖 patch bump Python CDK to version 5.7.1 fix(airbyte-cdk): add snappy to file-based deps (airbytehq#45864) 🐛 Source HubSpot: fix infinite loop when iterating through search results (airbytehq#44899) Destination Iceberg: cleanup cloud spec to only support S3 & Glue (airbytehq#45861) Load CDK Clean up Tmp File; SpillToDisk/ProcessRecords Unit Tests (airbytehq#45841) docs: Release notes for 1.0 (airbytehq#45693) Load CDK TaskLauncher Refactor + Unit Tests (airbytehq#45350) PGVector: add some changes to readme (airbytehq#45636) docs: Update homepage and product summary (airbytehq#45689) docs: What are credits? (airbytehq#45713) chore(source-zendesk-support): Update `ticket_activities` record (airbytehq#45849) chore: add docs for ai assist (airbytehq#45845) 🐙 source-typeform: run up-to-date pipeline [2024-09-21] (airbytehq#45495) 🐙 source-bing-ads: run up-to-date pipeline [2024-09-21] (airbytehq#45512) 🐙 source-retently: run up-to-date pipeline [2024-09-21] (airbytehq#45513) 🐙 destination-chroma: run up-to-date pipeline [2024-09-21] (airbytehq#45553) 🐙 source-smartsheets: run up-to-date pipeline [2024-09-21] (airbytehq#45722) 🐙 source-gridly: run up-to-date pipeline [2024-09-21] (airbytehq#45723) ...
Mike Saffitz (msaffitz)
added a commit
to Encore-Post-Sales/airbyte-magnify
that referenced
this pull request
May 30, 2025
* commit '59e981a72915dc57461250c62b60d3a8a04b5b0b': (6181 commits) docs(source-intercom): Update outdated URLs in docs (airbytehq#45858) 🤖 Cut version 5.7.1 of source-declarative-manifest 🤖 patch bump Python CDK to version 5.7.1 fix(airbyte-cdk): add snappy to file-based deps (airbytehq#45864) 🐛 Source HubSpot: fix infinite loop when iterating through search results (airbytehq#44899) Destination Iceberg: cleanup cloud spec to only support S3 & Glue (airbytehq#45861) Load CDK Clean up Tmp File; SpillToDisk/ProcessRecords Unit Tests (airbytehq#45841) docs: Release notes for 1.0 (airbytehq#45693) Load CDK TaskLauncher Refactor + Unit Tests (airbytehq#45350) PGVector: add some changes to readme (airbytehq#45636) docs: Update homepage and product summary (airbytehq#45689) docs: What are credits? (airbytehq#45713) chore(source-zendesk-support): Update `ticket_activities` record (airbytehq#45849) chore: add docs for ai assist (airbytehq#45845) 🐙 source-typeform: run up-to-date pipeline [2024-09-21] (airbytehq#45495) 🐙 source-bing-ads: run up-to-date pipeline [2024-09-21] (airbytehq#45512) 🐙 source-retently: run up-to-date pipeline [2024-09-21] (airbytehq#45513) 🐙 destination-chroma: run up-to-date pipeline [2024-09-21] (airbytehq#45553) 🐙 source-smartsheets: run up-to-date pipeline [2024-09-21] (airbytehq#45722) 🐙 source-gridly: run up-to-date pipeline [2024-09-21] (airbytehq#45723) ...
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.
What
Some changes to readme related to embedding models and enabling extension.
How
Update docs
Review guide
User Impact
Better docs to read
Can this PR be safely reverted and rolled back?