SETUP GUIDE
Kilo Code
Add Profundo as Kilo Code's custom OpenAI-compatible provider.
Status: Supported for Chat Completions; tool use unverified
1. Recommended setup
After signup, verification, and membership activation, issue a key in the dashboard. It is displayed once; keep it in a local secret store.
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: glm-5.2 (or minimax-m3 / nemotron-ultra)- Open Settings, then Providers, then Custom provider.
- Enter the provider identity and connection values above.
- Select `glm-5.2`.
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 configuration with environment interpolation.
{
"model": "openai-compatible/glm-5.2",
"provider": {
"openai-compatible": {
"options": {
"baseURL": "https://api.profundoai.com/v1",
"apiKey": "{env:PROFUNDO_API_KEY}"
}
}
}
}2. 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":"minimax-m3","messages":[{"role":"user","content":"Say hello"}]}'Use glm-5.2, minimax-m3, or nemotron-ultra with https://api.profundoai.com/v1.