Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,42 +1,11 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
{
|
13 |
-
"content": "Hi",
|
14 |
-
"role": "user"
|
15 |
-
}
|
16 |
-
],
|
17 |
-
"model": "deepseek-chat",
|
18 |
-
"frequency_penalty": 0,
|
19 |
-
"max_tokens": 2048,
|
20 |
-
"presence_penalty": 0,
|
21 |
-
"response_format": {
|
22 |
-
"type": "text"
|
23 |
-
},
|
24 |
-
"stop": None,
|
25 |
-
"stream": False,
|
26 |
-
"stream_options": None,
|
27 |
-
"temperature": 1,
|
28 |
-
"top_p": 1,
|
29 |
-
"tools": None,
|
30 |
-
"tool_choice": "none",
|
31 |
-
"logprobs": False,
|
32 |
-
"top_logprobs": None
|
33 |
-
})
|
34 |
-
headers = {
|
35 |
-
'Content-Type': 'application/json',
|
36 |
-
'Accept': 'application/json',
|
37 |
-
'Authorization': 'Bearer <TOKEN>'
|
38 |
-
}
|
39 |
-
|
40 |
-
response = requests.request("POST", url, headers=headers, data=payload)
|
41 |
-
|
42 |
-
print(response.text)
|
|
|
1 |
+
curl https://api.deepseek.com/chat/completions \
|
2 |
+
-H "Content-Type: application/json" \
|
3 |
+
-H "Authorization: Bearer <sk-cb27c81768e443868a194fad0bb91abc>" \
|
4 |
+
-d '{
|
5 |
+
"model": "deepseek-chat",
|
6 |
+
"messages": [
|
7 |
+
{"role": "system", "content": "You are a helpful assistant."},
|
8 |
+
{"role": "user", "content": "Hello!"}
|
9 |
+
],
|
10 |
+
"stream": false
|
11 |
+
}'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|