Isaac 0.1 triggers grounding through
<hint>...</hint> system messages. Reasoning and Focus are not supported on Isaac 0.1 — see Isaac 0.2 for those capabilities. See the API reference for details.Quick reference
| Task | SDK Helper | Optimal Prompt |
|---|---|---|
| Concise caption | caption(style="concise") | Provide a concise, human-friendly caption for the upcoming image. |
| Detailed caption | caption(style="detailed") | Provide a detailed caption describing key objects, relationships, and context in the upcoming image. |
| OCR | ocr() | System: You are an OCR system. Accurately detect, extract, and transcribe all readable text from the image. |
| General detection | detect() | Your goal is to segment out the objects in the scene |
| Class detection | detect(classes=[...]) | Your goal is to segment out the following categories: {categories} |
| Visual Q&A | question() | Pass your question directly as user content |
| Grounded Q&A | question(expects="box") | Same question, model returns boxes with answers |
| Counting | question() | How many {objects} are there? Point to each. |
Grounding on Isaac 0.1 (<hint> syntax)
Place hint values inside a system-role message.
| Hint | Output |
|---|---|
<hint>BOX</hint> | Bounding boxes |
<hint>POINT</hint> | Points |
<hint>POLYGON</hint> | Polygons |