> ## 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 from Node.js

The Flint AI TypeScript 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.

```typescript theme={null}
import { wrap } from "@sandboxaq/flintai-sdk-ts";

wrap(client, { gatewayUrl, apiKey });
```

Requires Node.js 18 or later.

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

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

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

  <Card title="Integrations" icon="plug" href="/flintai/platform/sdk/typescript/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>
