{ "opencollection": "1.0.0", "info": { "name": "Llama Platform Agent Data Embedding Model Configs API", "version": "0.1.0" }, "items": [ { "info": { "name": "Embedding Model Configs", "type": "folder" }, "items": [ { "info": { "name": "List Embedding Model Configs", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/embedding-model-configs", "params": [ { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List Embedding Model Configs" }, { "info": { "name": "Create a new Embedding Model Configuration", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/embedding-model-configs", "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 new embedding model configuration within a specified project." }, { "info": { "name": "Update Embedding Model Config", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/v1/embedding-model-configs/:embedding_model_config_id", "params": [ { "name": "embedding_model_config_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": "Update an embedding model config by ID." }, { "info": { "name": "Delete Embedding Model Config", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/embedding-model-configs/:embedding_model_config_id", "params": [ { "name": "embedding_model_config_id", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "query" }, { "name": "organization_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete an embedding model config by ID." } ] } ], "bundled": true }