SETUP GUIDE
Janitor AI
Connect Janitor AI's browser-hosted character chat to Profundo.
Status: Supported browser connection; CORS verified
1. Desktop GUI setup
Configure Profundo from Janitor AI's browser-hosted character chat.
Character chat menu -> API Settings -> Proxy -> Add Configuration
Endpoint: https://api.profundoai.com/v1/chat/completions
API key: PROFUNDO_API_KEY
Model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)- From the character chat menu, open API Settings, then Proxy, then Add Configuration.
- Enter the full endpoint, key, and model.
- Save and refresh the configuration.
2. CLI / TUI setup
This tool does not provide a separate documented CLI / TUI setup. Use the GUI setup above.
Compatibility note: Browser CORS is verified for `https://janitorai.com`. Keep the key private and revoke it if it is exposed.
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.