Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Request and response examples for the cookbook quickstart and chat routes.
POST /api/quickstart
{ "prompt": "hello", "personaId": "optional-uuid" }
{ "text": "...", "model": "persona-uuid" }
POST /api/chat
{ "messages": [{ "role": "user", "content": "hello" }], "personaId": "optional-uuid" }
{ "reply": "...", "model": "persona-uuid" }
{ "error": { "type": "validation | config | provider", "message": "..." } }
Was this page helpful?