Initial commit

This commit is contained in:
Docker7530
2026-03-01 01:43:46 +08:00
commit c6125c117b
3840 changed files with 415340 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
```
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": "你是谁?"
}
]
}'
```