packages/kilo-docs/pages/ai-providers/fireworks.md
Fireworks AI is a high-performance platform for running AI models that offers fast access to a wide range of open-source and proprietary language models. Built for speed and reliability, Fireworks AI provides both serverless and dedicated deployment options with OpenAI-compatible APIs.
Website: https://fireworks.ai/
{% tabs %} {% tab label="VSCode (Legacy)" %}
{% /tab %} {% tab label="VSCode" %}
Open Settings (gear icon) and go to the Providers tab to add Fireworks AI 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 FIREWORKS_API_KEY="your-api-key"
Config file (~/.config/kilo/kilo.json or ./kilo.json):
{
"provider": {
"fireworks-ai": {
"env": ["FIREWORKS_API_KEY"],
},
},
}
Then set your default model:
{
"model": "fireworks-ai/accounts/fireworks/models/llama4-scout-instruct-basic",
}
{% /tab %} {% /tabs %}