{ "opencollection": "1.0.0", "info": { "name": "Biolevate Agent Question Answering API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Question Answering", "type": "folder" }, "items": [ { "info": { "name": "List QA jobs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/qa/jobs", "params": [ { "name": "pageSize", "value": "", "type": "query", "description": "Page size" }, { "name": "page", "value": "", "type": "query", "description": "Page number" }, { "name": "sortProperty", "value": "", "type": "query", "description": "Sort property" }, { "name": "sortOrder", "value": "", "type": "query", "description": "Sort order" } ] }, "docs": "Returns a paginated list of question answering jobs for the current user" }, { "info": { "name": "Create QA job", "type": "http" }, "http": { "method": "POST", "url": "/api/core/qa/jobs", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new question answering job on the specified files" }, { "info": { "name": "Get QA job", "type": "http" }, "http": { "method": "GET", "url": "/api/core/qa/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns a single question answering job by its ID" }, { "info": { "name": "Get QA job outputs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/qa/jobs/:jobId/results", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the answers and results from the QA job" }, { "info": { "name": "Get QA job inputs", "type": "http" }, "http": { "method": "GET", "url": "/api/core/qa/jobs/:jobId/inputs", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the input files and questions used for the QA job" }, { "info": { "name": "Get QA job annotations", "type": "http" }, "http": { "method": "GET", "url": "/api/core/qa/jobs/:jobId/annotations", "params": [ { "name": "jobId", "value": "", "type": "path", "description": "The job Id" } ] }, "docs": "Returns the document annotations generated by the QA job" } ] } ], "bundled": true }