{
"model": "a31d044d-af13-43da-b715-d87a29569809",
"messages": [
{
"role": "user",
"content": "你好"
}
],
"temperature": 0,
"stream": true
}
curl --location --request POST 'http://192.168.50.15:7860/api/v2/assistant/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "a31d044d-af13-43da-b715-d87a29569809",
"messages": [
{
"role": "user",
"content": "你好"
}
],
"temperature": 0,
"stream": true
}'
{
"id": "148964adf7ec439f87a6240289735740",
"object": "chat.completion",
"created": 1720755036,
"model": "a31d044d-af13-43da-b715-d87a29569809",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "你好,有什么可以帮你的?"
},
"finish_reason": "stop"
}
]
}