31 lines
729 B
Markdown
31 lines
729 B
Markdown
|
|
```
|
|
curl --location 'http://183.252.183.117/api/v1/chats_openai/d06e1690377d11f0a5df0242ac120006/chat/completions' \
|
|
--header 'Authorization: Bearer ragflow-VjOWEyN2U0M2M2MTExZjBiM2UxMDI0Mm' \
|
|
--header 'Content-Type: application/json' \
|
|
--data '{
|
|
"model": "DeepSeek-R1-Distill-Qwen-32B",
|
|
"stream": true,
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": "你是谁?"
|
|
}
|
|
]
|
|
}'
|
|
|
|
curl --location 'http://183.252.183.117:30021/v1/chat/completions' \
|
|
--header 'Content-Type: application/json' \
|
|
--data '{
|
|
"model": "DeepSeek-R1-Distill-Qwen-32B",
|
|
"stream": true,
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": "你是谁?"
|
|
}
|
|
]
|
|
}'
|
|
|
|
```
|