{ "opencollection": "1.0.0", "info": { "name": "Llama Platform Agent Data Chat API", "version": "0.1.0" }, "items": [ { "info": { "name": "Chat", "type": "folder" }, "items": [ { "info": { "name": "List Sessions", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/chat", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" }, { "name": "page_size", "value": "", "type": "query" }, { "name": "page_token", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all chat sessions for the current project." }, { "info": { "name": "Create Session", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/chat", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a chat session, optionally bound to indexes (locked after the first message)." }, { "info": { "name": "Get Full Session", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/chat/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a full session by ID, including its event history." }, { "info": { "name": "Delete Session", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/chat/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a session." }, { "info": { "name": "Get Session Summary", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/chat/:session_id/summary", "params": [ { "name": "session_id", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a session summary by ID." }, { "info": { "name": "Stream Messages", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/chat/:session_id/messages/stream", "params": [ { "name": "session_id", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Stream agent events for a chat turn as Server-Sent Events." } ] } ], "bundled": true }