curl --location '/api/v1/aigc/chat/completion' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "string",
"model": "string",
"sessionId": "string",
"parentId": 0,
"temperature": 0,
"topP": 0,
"thinkingEnabled": true,
"searchEnabled": true,
"stream": true
}'{
"code": 0,
"msg": "ok",
"data": {
"sessionId": "string",
"completion": {
"type": "text-delta",
"parentId": "string",
"messageId": "string",
"text": "string",
"error": null
}
}
}