-
Notifications
You must be signed in to change notification settings - Fork 1k
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
chore: Making embedding optional in retrieve_online_documents #5104
Conversation
Signed-off-by: Francisco Javier Arceo <[email protected]>
Signed-off-by: Francisco Javier Arceo <[email protected]>
Signed-off-by: Francisco Javier Arceo <[email protected]>
Signed-off-by: Francisco Javier Arceo <[email protected]>
Signed-off-by: Francisco Javier Arceo <[email protected]>
sdk/python/feast/feature_store.py
Outdated
@@ -1876,15 +1876,14 @@ def retrieve_online_documents_v2( | |||
features: The list of features that should be retrieved from the online document store. These features can be | |||
specified either as a list of string document feature references or as a feature service. String feature | |||
references must have format "feature_view:feature", e.g, "document_fv:document_embeddings". | |||
query: The query to retrieve the closest document features for. | |||
query: The query to retrieve the closest document features for (optional) |
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.
Probably it's The embedded query
rather than The query
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.
Also missed to doc the query_string
param
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.
Good catch!
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.
lgtm
Signed-off-by: Francisco Javier Arceo <[email protected]>
Actually prowl doesn't work, do you mind clicking the approval? |
What this PR does / why we need it:
chore: Making embedding optional in retrieve_online_documents
Which issue(s) this PR fixes:
Misc