Quickstart

Send a mock request locally

  1. Copy .env.example to .env.
  2. Start the workspace with pnpm dev.
  3. Create a development API key in the dashboard.
curl http://localhost:3100/v1/chat/completions \
  -H "Authorization: Bearer ar_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"arsant/mock","messages":[{"role":"user","content":"Hello"}]}'