Quickstart
Send a mock request locally
- Copy
.env.exampleto.env. - Start the workspace with
pnpm dev. - 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"}]}'