curl --request POST \
--url https://api.example.com/api/chat/task/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"agent_id": 123,
"files": [
"<string>"
],
"llm_names": [
"<string>"
],
"memory_similarity_threshold": 1.5,
"agent_type": "standard",
"agent_config": {},
"vibe_mode": "task",
"process_description": "<string>",
"examples": [
{
"input": "<string>",
"output": "<string>"
}
]
}
'