profundo.ai

SETUP GUIDE

Janitor AI

Connect Janitor AI's browser-hosted character chat to Profundo.

Status: Supported browser connection; CORS verified

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.

Character chat menu -> API Settings -> Proxy -> Add Configuration
Endpoint: https://api.profundoai.com/v1/chat/completions
API key: PROFUNDO_API_KEY
Model: glm-5.2 (or minimax-m3 / nemotron-ultra)
  1. From the character chat menu, open API Settings, then Proxy, then Add Configuration.
  2. Enter the full endpoint, key, and model.
  3. Save and refresh the configuration.

Compatibility note: Browser CORS is verified for `https://janitorai.com`. Keep the key private and revoke it if it is exposed.

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