curl --location --request POST 'https://api.modellink.ai/task.v1.TaskService/CreateResponses' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "string",
"project_id": "string",
"previous_response_id": "string",
"input": [
{
"content": "string",
"role": "string",
"type": "string"
}
]
}'{
"output": [
{
"type": "string",
"role": "string",
"content": [
{
"type": "string",
"text": "string"
}
],
"summary": [
{
"type": "string",
"text": "string"
}
]
}
],
"usage": {
"input_tokens": 0,
"output_tokens": 0,
"total_tokens": 0
},
"task_id": "string"
}