Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ First-class support with schema indexing, query execution, and metadata introspe

Model-agnostic — bring your own provider or run locally.

Altimate LLM Gateway · Anthropic · OpenAI · Google Gemini · Google Vertex AI · Amazon Bedrock · Azure OpenAI · Databricks AI Gateway · Snowflake Cortex · Mistral · Groq · DeepInfra · Cerebras · Cohere · Together AI · Perplexity · xAI · OpenRouter · LM Studio · Ollama · GitHub Copilot
Altimate LLM Gateway · Anthropic · OpenAI · Google Gemini · Google Vertex AI · Amazon Bedrock · Azure OpenAI · Databricks AI Gateway · Snowflake Cortex · Mistral · Groq · DeepInfra · Cerebras · Cohere · Together AI · Perplexity · xAI · OpenRouter · Requesty · LM Studio · Ollama · GitHub Copilot

## Skills

Expand Down
23 changes: 23 additions & 0 deletions docs/docs/configure/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,29 @@ Run local models through [LM Studio](https://lmstudio.ai)'s OpenAI-compatible se

Access 150+ models through a single API key.

## Requesty

```json
{
"provider": {
"requesty": {
"options": {
"apiKey": "{env:REQUESTY_API_KEY}"
},
"models": {
"openai/gpt-4o-mini": {
"name": "GPT-4o mini",
"limit": { "context": 128000, "output": 16384 }
}
}
}
},
"model": "requesty/openai/gpt-4o-mini"
}
```

[Requesty](https://docs.requesty.ai) is an OpenAI-compatible router. It is already in the models.dev catalog, so `/connect` or `altimate-code auth login` lists it, and setting `REQUESTY_API_KEY` is enough to use its catalog models (for example `requesty/gpt-5.4-mini`) with no config. Any other `vendor/model` id from Requesty's `/v1/models` can be added under `models` as shown above. Get a key at [app.requesty.ai/api-keys](https://app.requesty.ai/api-keys).

## Copilot

```json
Expand Down
Loading