> ## 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.

# describe • AI Agent SDK

> describe: Generate a detailed description of an image.

# describe

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**VisionAgent**](../classes/VisionAgent) class in the [**vision\_agent**](../modules/vision_agent) module.

Generate a detailed description of an image.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def describe(image: str, detail: Optional[str], model: Optional[str]) -> str
```

## Parameters

<ParamField query="image" type="str" required={true}>
  Image URL or local file path
</ParamField>

<ParamField query="detail" type="Optional" required={false}>
  Detail level (low, high, auto)
</ParamField>

<ParamField query="model" type="Optional" required={false}>
  Override model for this call \*\*kwargs: Additional parameters
</ParamField>

### Returns

<ResponseField name="Returns" type="str">
  Detailed description text
</ResponseField>

## Usage

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
agent = VisionAgent()
    description = agent.describe("photo.jpg")
    print(description)
```

## Uses

* `analyze`

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/agent/vision_agent.py#L266">
  `praisonaiagents/agent/vision_agent.py` at line 266
</Card>
