SETUP GUIDE
Kilo Code
Add Profundo as Kilo Code's custom OpenAI-compatible provider.
Status: Supported for Chat Completions; tool use unverified
1. Desktop GUI setup
Add Profundo from Kilo Code's provider settings in VS Code.
Settings -> Providers -> Custom provider
Provider ID: profundo
Display name: Profundo AI
Provider API: OpenAI Compatible
Base URL: https://api.profundoai.com/v1
API key: PROFUNDO_API_KEY
Model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)- Open Settings, then Providers, then Custom provider.
- Enter the provider identity and connection values above.
- Submit the provider and select `gpt-6-astra`.
2. CLI / TUI setup
After signup, verification, and membership activation, issue a key in the dashboard. It is displayed once; keep it in a local secret store.
kilo
/connect -> OpenAI Compatible
/models -> gpt-6-astra- Start the Kilo TUI with `kilo`.
- Use `/connect` to enter the Profundo base URL and API key.
- Use `/models` to select `gpt-6-astra` (or another available model).
Compatibility note: This is a Chat Completions connection, not Responses. Direct tool use is unverified.
Optional alternatives
Advanced: kilo.jsonc
Kilo supports an OpenAI-compatible global configuration with environment interpolation.
{
"model": "openai-compatible/gpt-6-astra",
"provider": {
"openai-compatible": {
"options": {
"baseURL": "https://api.profundoai.com/v1",
"apiKey": "{env:PROFUNDO_API_KEY}"
}
}
}
}3. Verify your key
Set PROFUNDO_API_KEY in your shell, then run:
curl https://api.profundoai.com/v1/chat/completions \
-H "Authorization: Bearer $PROFUNDO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-6-astra","messages":[{"role":"user","content":"Say hello"}]}'Use any model returned by GET /v1/models with https://api.profundoai.com/v1.