packages/kilo-docs/pages/ai-providers/inception.md
Inception provides access to cutting-edge AI models with a focus on performance and reliability. Their infrastructure is designed for enterprise-grade applications requiring consistent, high-quality outputs.
Website: https://www.inceptionlabs.ai
Kilo Code supports Inception's available models. Model selection and capabilities may vary based on your account tier.
Refer to Inception's current website and developer documentation for the most up-to-date list of supported models and capabilities.
{% tabs %} {% tab label="VSCode" %}
Open Settings (gear icon) and go to the Providers tab to add Inception 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 INCEPTION_API_KEY="your-api-key"
Config file (~/.config/kilo/kilo.json or ./kilo.json):
{
"provider": {
"inception": {
"env": ["INCEPTION_API_KEY"],
},
},
}
Then set your default model:
{
"model": "inception/mercury-coder-small-beta",
}
{% /tab %} {% /tabs %}