Open
Conversation
…0.3.0 - Add Video.update(name=) method to update video metadata - Bump version to 0.4.4 - Update capture binary requirement to >=0.3.0
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.
Pull Request
Description:
Release 0.4.4 — adds search sorting, scene describe model config, video update method, and capture binary bump.
Changes:
sort_docs_onparameter toCollection.search()andSemanticSearchfor sorting docs within each video by"score"or"start"model_configparameter toScene.describe()for passing custom model configuration alongsidemodel_nameVideo.update(name=)method to update video metadata viaPATCH /video/{video_id}0.4.4>=0.2.10to>=0.3.0Related Issues:
sort_docs_onin the main SDKmodel_configneeded for custom LLM config in scene description workflowsTesting:
Video.update(name=)tested end-to-end against dev API (tests/test_video_update.py) — verified name update and revertsort_docs_on— verify search results respect sort order when passing"score"or"start"Scene.describe(model_config=)— verify model config is forwarded to the API and description is returned>=0.3.0— verifypip install videodb[capture]pulls the correct binary versionCollection.search(),Video.search(), andScene.describe()calls without the new params still work as before