> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Vision Agent • AI Agent SDK

> VisionAgent - A specialized agent for image analysis and understanding.

# vision\_agent

<Badge color="blue">AI Agent</Badge>

VisionAgent - A specialized agent for image analysis and understanding.

This agent provides vision capabilities for analyzing, describing, and
extracting information from images using AI vision models.

Follows the Agent() class patterns with:

* Lazy loading for heavy dependencies (litellm, rich)
* Precedence Ladder for configuration resolution
* Both sync and async methods

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents.agent import vision_agent
```

## Classes

<CardGroup cols={2}>
  <Card title="VisionConfig" icon="brackets-curly" href="../classes/VisionConfig">
    Configuration for vision processing settings.
  </Card>

  <Card title="VisionAgent" icon="brackets-curly" href="../classes/VisionAgent">
    A specialized agent for image analysis and understanding.
  </Card>
</CardGroup>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Agents Concept" icon="robot" href="/docs/concepts/agents" />

  <Card title="Single Agent Guide" icon="book-open" href="/docs/guides/single-agent" />

  <Card title="Multi-Agent Guide" icon="users" href="/docs/guides/multi-agent" />

  <Card title="Agent Configuration" icon="gear" href="/docs/configuration/agent-config" />

  <Card title="Auto Agents" icon="wand-magic-sparkles" href="/docs/features/autoagents" />
</CardGroup>
