docs(annotate_subtasks): document Gemini Robotics-ER 1.6 support#256
Merged
Conversation
Follow-up to #255. Updates the dataset tutorial to mention that annotate_subtasks.py now accepts Gemini model IDs via --model, including the GEMINI_API_KEY / GOOGLE_API_KEY env vars and a usage example. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
[claude-review] summary for commit 0e61085 No blocking issues found. |
shuheng-liu
approved these changes
May 4, 2026
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 this does
Follow-up to #255 — that PR added Google's Gemini family (including Gemini Robotics-ER 1.6) as a
--modeloption forsrc/opentau/scripts/annotate_subtasks.pybut did not update the docs. This PR bringsdocs/source/tutorials/datasets.rstin sync with the implemented behavior:GEMINI_API_KEY/GOOGLE_API_KEYnext toANTHROPIC_API_KEY.--modelrow in the flags table explains the Anthropic-vs-Gemini routing rule (IDs starting withgeminiorrobotics-erare dispatched to google-genai).📝 Documentation
How it was tested
uv run pre-commit run --files docs/source/tutorials/datasets.rst— passes.src/opentau/scripts/annotate_subtasks.pyto confirm the routing rule (_is_gemini_model) and env-var fallback (GEMINI_API_KEY→GOOGLE_API_KEY) match.How to checkout & try? (for the reviewer)
```bash
git checkout docs/annotate-subtasks-gemini
Render the docs locally
uv run sphinx-build -b html docs/source docs/_build/html
open docs/_build/html/tutorials/datasets.html
```
Checklist
🤖 Generated with Claude Code