{ "opencollection": "1.0.0", "info": { "name": "Llama Platform Agent Data Retrieval API", "version": "0.1.0" }, "items": [ { "info": { "name": "Retrieval", "type": "folder" }, "items": [ { "info": { "name": "Retrieve", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/retrieval/retrieve", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve relevant chunks via hybrid search (vector + full-text), with filtering on built-in or user-defined metadata." }, { "info": { "name": "Find Files", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/retrieval/files/find", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Search for files by name." }, { "info": { "name": "Grep File", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/retrieval/files/grep", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Grep within a file's parsed content using a regex pattern." }, { "info": { "name": "Read File", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/retrieval/files/read", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Read the parsed text content of a specific file." } ] } ], "bundled": true }