feat(cli): add image update command for metadata and tags#483
Draft
digaobarbosa wants to merge 3 commits into
Draft
feat(cli): add image update command for metadata and tags#483digaobarbosa wants to merge 3 commits into
digaobarbosa wants to merge 3 commits into
Conversation
… new metadata endpoint Adds support for the new workspace-level image metadata/tags API: - `roboflow image update` for updating metadata and tags on existing images (single sync + batch async) - Refactors `roboflow image tag` to use the new endpoint, removing the now-unnecessary `--project` flag Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
… hidden alias Both `roboflow image metadata` and `roboflow image tag` now point to the same handler with identical flags (--tags, --remove-tags, --metadata, --remove-metadata, --poll, --timeout). Zero code duplication. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Description
Adds CLI support for updating metadata and tags on existing images using the new workspace-level API endpoints (roboflow/roboflow#11836).
Changes:
roboflow image metadatacommand — single-image sync or multi-image batch (async with polling)roboflow image tagkept as a hidden alias pointing to the same handler (zero duplication)update_image_metadata(sync) andbatch_update_image_metadata(async)Type of change
How has this change been tested?
image metadataandimage tagUsage examples
Will the change affect Universe?
No
Any specific deployment considerations
N/A — SDK-only change
Docs