{ "opencollection": "1.0.0", "info": { "name": "langfuse AnnotationQueues LlmConnections API", "version": "1.0" }, "items": [ { "info": { "name": "LlmConnections", "type": "folder" }, "items": [ { "info": { "name": "llmConnections_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/llm-connections", "params": [ { "name": "page", "value": "", "type": "query", "description": "page number, starts at 1" }, { "name": "limit", "value": "", "type": "query", "description": "limit of items per page" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get all LLM connections in a project" }, { "info": { "name": "llmConnections_upsert", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/public/llm-connections", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create or update an LLM connection. The connection is upserted on provider." }, { "info": { "name": "llmConnections_delete", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/public/llm-connections/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete an LLM connection by id. Evaluators that depend on the deleted connection are automatically paused." } ] } ], "bundled": true }