> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> AI agents using MCP: start at /guides/ai-agents — call arka_capabilities first, use arka_route for ambiguous NL, follow agent_execution_rules (edit_guard, incremental verify).
> Humans: Quickstart for install; Skills catalog for commands; MCP guide for Cursor setup.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# OCR + vLLM evidence

> इमेज उत्तरों को OCR और मॉडल व्याख्या दोनों में ग्राउंड करें।

इमेज उत्तरों को OCR और मॉडल व्याख्या दोनों में ग्राउंड करें:

```bash theme={null}
pip install pytesseract pillow
arka vision-evidence screen.png "What price is shown?" \\
  --model-view "The visual model sees a price label reading $10"
arka vision-evidence screen.png "What price is shown?" --json
```

Arka रिपोर्ट करता है कि OCR क्या कहता है, visual/vLLM मॉडल क्या कहता है, और एक संयुक्त उत्तर जो agreement, conflicts, और uncertainty की पहचान करता है। यह चुपचाप किसी मॉडल guess को text evidence के रूप में नहीं मानता। प्राकृतिक भाषा अनुरोध समर्थित हैं।


## Related topics

- [Image description, OCR, और screen capture](/hi/guides/vision.md)
- [vLLM fallback](/hi/guides/vllm.md)
- [Dev work के लिए video evidence](/hi/guides/video-evidence.md)
- [AI agent guide — MCP पर Arka उपयोग करें](/hi/guides/ai-agents.md)
- [pytest suite के साथ Arka का Testing](/hi/guides/testing.md)
