Get a list of the available LLM calls
get/llmCalls
Returns a list of the available LLM calls.
1{2 "count": 1,3 "items": [4 {5 "completionCost": 0.0005,6 "completionTokens": 25,7 "id": "079b46b9-fbc4-44ce-8cb1-163330e4d812",8 "input": {9 "content": "What is the weather like today?",10 "modelName": "gpt-4o",11 "modelProvider": "azure",12 "temperature": 0.713 },14 "llmId": "de772bda-8756-41a8-9c68-defe2932bdad",15 "output": {16 "response": "The weather today is sunny with a high of 75°F.",17 "toolCalls": []18 },19 "parentQueryId": "19c0e653-28f5-49da-aa34-7ade481b362e",20 "promptCost": 0.0003,21 "promptTokens": 1522 }23 ],24 "limit": 50,25 "name": "collections",26 "start": 027}| Name | Type | Required | Description |
|---|---|---|---|
filter | string or null | false | The criteria for filtering. Supported attributes include id, llmId, and parentQueryId. Additional attributes might be added in future releases. |
limit | integer | false | The maximum number of records to be returned. Default: 50 |
start | integer | false | The zero-based offset of the first record to be returned. Default: 0 |
| Status | Meaning | Description | ||
|---|---|---|---|---|
| 200 | OK | The request succeeded. | Headers | Schema |
| 400 | Bad Request | The request was invalid. | Schema | |
| 401 | Unauthorized | The user was not authenticated. | Schema | |
| 422 | Unprocessable Entity | The server understands the request but was unable to process the contained instructions. | Schema |