This is a proxy service that converts Monica's service to ChatGPT-compatible API format.
POST /hf/v1/chat/completions
- Chat completion endpointGET /hf/v1/models
- List available modelscurl -X POST https://xxx-xxx.hf.space/hf/v1/chat/completions \ -H "Authorization: Bearer YOUR_BEARER_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o-mini", "messages": [ { "role": "user", "content": "Hello!" } ], "stream": true }'