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

# [llm]

> Agent LLM requirements

### llm.proxies

<Badge color="blue">optional</Badge>

An array of [AgentLlmProxyRequest](/reference/types/agent-llm-proxy-request) describing requests for LLM proxies to be used by this
agent. The [AgentLlmProxyRequest](/reference/types/agent-llm-proxy-request) page serves as the documentation for this array.

All proxies listed must be satisfied for the server to launch the agent. Application developers that attempt to create
sessions with agents that request unavailable proxies will receive an error.

```toml theme={null}
[[llm.proxies]]
name = "OPENAI"
format.type = "OpenAI"
models = ["gpt-5"]

[[llm.proxies]]
name = "ANTHROPIC"
format.type = "Anthropic"
models = ["claude-3-opus"]
```

**Requirements**

* There may be at most 32 proxy requests defined.
