SETUP GUIDE
RisuAI
Configure Profundo in RisuAI's Custom Models settings.
Status: Source-backed, medium confidence; browser CORS configured
1. Desktop GUI setup
Configure Profundo from RisuAI's Custom Models settings.
Settings -> Advanced -> Custom Models
Format: OpenAICompatible
Completion URL: https://api.profundoai.com/v1/chat/completions
API key: PROFUNDO_API_KEY
Request model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)
Internal model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)- Open Settings, Advanced, then Custom Models.
- Choose `OpenAICompatible` and enter the full completion URL, key, request model, and internal model.
- Save the custom model.
2. CLI / TUI setup
This tool does not provide a separate documented CLI / TUI setup. Use the GUI setup above.
Compatibility note: The web version needs CORS; it is configured for `https://risuai.xyz` and `https://risuai.net`. Reverse-proxy auto-fill differs, so use the full URL in Custom Models.
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.