+ "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nRetrieve a list of all asynchronous chat completion requests for a given user.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/completion_list_response',\n $defs: {\n completion_list_response: {\n type: 'object',\n title: 'ListAsyncApiChatCompletionsResponse',\n properties: {\n requests: {\n type: 'array',\n title: 'Requests',\n items: {\n type: 'object',\n title: 'AsyncApiChatCompletionsResponseSummary',\n properties: {\n id: {\n type: 'string',\n title: 'Id'\n },\n created_at: {\n type: 'integer',\n title: 'Created At'\n },\n model: {\n type: 'string',\n title: 'Model'\n },\n status: {\n type: 'string',\n title: 'AsyncProcessingStatus',\n description: 'Status enum for async processing.',\n enum: [ 'CREATED',\n 'IN_PROGRESS',\n 'COMPLETED',\n 'FAILED'\n ]\n },\n completed_at: {\n type: 'integer',\n title: 'Completed At'\n },\n failed_at: {\n type: 'integer',\n title: 'Failed At'\n },\n started_at: {\n type: 'integer',\n title: 'Started At'\n }\n },\n required: [ 'id',\n 'created_at',\n 'model',\n 'status'\n ]\n }\n },\n next_token: {\n type: 'string',\n title: 'Next Token'\n }\n },\n required: [ 'requests'\n ]\n }\n }\n}\n```",
0 commit comments