packages/kilo-docs/pages/ai-providers/requesty.md
Kilo Code supports accessing models through the Requesty AI platform. Requesty provides an easy and optimized API for interacting with 150+ large language models (LLMs).
Website: https://www.requesty.ai/
{% tabs %} {% tab label="VSCode (Legacy)" %}
{% /tab %} {% tab label="VSCode" %}
Open Settings (gear icon) and go to the Providers tab to add Requesty and enter your API key.
The extension stores this in your kilo.json config file. You can also edit the config file directly — see the CLI tab for the file format.
{% /tab %} {% tab label="CLI" %}
Set the API key as an environment variable or configure it in your kilo.json config file:
Environment variable:
export REQUESTY_API_KEY="your-api-key"
Config file (~/.config/kilo/kilo.json or ./kilo.json):
{
"provider": {
"requesty": {
"env": ["REQUESTY_API_KEY"],
},
},
}
Then set your default model:
{
"model": "requesty/anthropic/claude-sonnet-4-20250514",
}
{% /tab %} {% /tabs %}