SETUP GUIDE
Roo Code
Connect Roo Code with its OpenAI-compatible settings.
Status: EXPERIMENTAL
1. Desktop GUI setup
Configure Profundo from the Roo Code extension settings in VS Code.
Settings gear -> API Provider: 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 the Settings gear.
- Choose OpenAI Compatible as API Provider.
- Enter the Profundo base URL, key, and model.
2. CLI / TUI setup
This tool does not provide a separate documented CLI / TUI setup. Use the GUI setup above.
Compatibility note: Roo uses native tool calling. Profundo tool-output compatibility is unverified, so full agent execution is not supported.
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.