curl --request POST \
--url https://api.dualship.run/api/v1/ai/complete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>",
"role": "system"
}
],
"workspace_id": "<string>",
"max_tokens": 8192,
"model": "<string>",
"stream": true,
"temperature": 1
}
'