SETUP GUIDE
RisuAI
Configure Profundo in RisuAI's Custom Models settings.
Status: Source-backed, medium confidence; browser CORS configured
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 -> Advanced -> Custom Models
Format: OpenAICompatible
Completion URL: https://api.profundoai.com/v1/chat/completions
API key: PROFUNDO_API_KEY
Request model: glm-5.2 (or minimax-m3 / nemotron-ultra)
Internal model: glm-5.2 (or minimax-m3 / nemotron-ultra)- Open Settings, Advanced, then Custom Models.
- Choose `OpenAICompatible` and enter the full completion URL, key, request model, and internal model.
- Save the custom model.
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.
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.