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

# Image Transcribe Document Agent

> Transcribe a document image with a Ministral 14B agent.

The source-fidelity code uses deprecated `pixtral-12b-2409`. Replace it with `ministral-14b-2512` before running the example.

```python image_transcribe_document_agent.py theme={null}
"""
This agent transcribes an old written document from an image.
"""

from agno.agent import Agent
from agno.media import Image
from agno.models.mistral.mistral import MistralChat

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

agent = Agent(
    model=MistralChat(id="pixtral-12b-2409"),
    markdown=True,
)

agent.print_response(
    "Transcribe this document.",
    images=[
        Image(url="https://ciir.cs.umass.edu/irdemo/hw-demo/page_example.jpg"),
    ],
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------

if __name__ == "__main__":
    pass
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno mistralai
    ```
  </Step>

  <Step title="Export your Mistral API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export MISTRAL_API_KEY="your_mistral_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:MISTRAL_API_KEY="your_mistral_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Update the model">
    When saving the code, replace `pixtral-12b-2409` with `ministral-14b-2512`.
  </Step>

  <Step title="Run the example">
    Save the code above as `image_transcribe_document_agent.py`, then run:

    ```bash theme={null}
    python image_transcribe_document_agent.py
    ```
  </Step>
</Steps>

Full source: [cookbook/90\_models/mistral/image\_transcribe\_document\_agent.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/mistral/image_transcribe_document_agent.py)
