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

# Overview

> Route your agent's LLM traffic through Flint AI

The Flint AI Python SDK connects a running agent to the Flint AI gateway, so you can see its sessions and apply guardrails to its traffic. It wraps your existing LLM client with one function call — your prompts, your model choice, and the rest of your code stay as they are.

```python theme={null}
import flintai

client = flintai.wrap(client)
```

Requires Python 3.10 or later.

<CardGroup cols={2}>
  <Card title="Installation" icon="download" href="/flintai/platform/sdk/python/installation">
    Install `flintai-sdk-py` and verify it works
  </Card>

  <Card title="Configuration" icon="sliders" href="/flintai/platform/sdk/python/configuration">
    Set the gateway URL, API key, and policy
  </Card>

  <Card title="Usage" icon="code" href="/flintai/platform/sdk/python/usage">
    Wrap a client, read what the SDK sends, and handle blocked responses
  </Card>

  <Card title="Integrations" icon="plug" href="/flintai/platform/sdk/python/integrations">
    OpenAI, Anthropic, Google GenAI, LangChain, and Google ADK
  </Card>
</CardGroup>

<Note>
  If you are setting this up for the first time, [Monitor your agents at runtime](/flintai/platform/getting-started/runtime) walks the whole path end to end.
</Note>
