profundo.ai

SETUP GUIDE

Roo Code

Connect Roo Code with its OpenAI-compatible settings.

Status: EXPERIMENTAL

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 gear -> API Provider: OpenAI Compatible
Base URL: https://api.profundoai.com/v1
API Key: PROFUNDO_API_KEY
Model: glm-5.2 (or minimax-m3 / nemotron-ultra)
  1. Open the Settings gear.
  2. Choose OpenAI Compatible as API Provider.
  3. Enter the Profundo base URL, key, and model.

Compatibility note: Roo uses native tool calling. Profundo tool-output compatibility is unverified, so full agent execution is not supported.

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.

Official documentation