SETUP GUIDE
Cline
Set up Cline's OpenAI-compatible connection in VS Code.
Status: Supported connection; agent tool behavior unverified
1. Desktop GUI setup
Configure Profundo from the Cline extension settings in VS Code.
Cline panel -> 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 Cline panel and select its Settings gear.
- Choose OpenAI Compatible as the API Provider.
- Enter the base URL, key, and model values above.
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.
cline auth
Provider: OpenAI Compatible
Base URL: https://api.profundoai.com/v1
API Key: PROFUNDO_API_KEY
Model: gpt-6-astra- Run `cline auth` in a terminal.
- Choose OpenAI Compatible and enter the Profundo base URL, key, and model.
- Launch the TUI with `cline` and use `/model` to select the model if needed.
Compatibility note: Direct Chat Completions tool/function-call compatibility is unverified, so agent tool behavior is not supported or claimed.
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.