hertogateis commited on
Commit
023a7b3
·
verified ·
1 Parent(s): 77ccac5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -42
app.py CHANGED
@@ -1,42 +1,11 @@
1
- import requests
2
- import json
3
-
4
- url = "https://api.deepseek.com/chat/completions"
5
-
6
- payload = json.dumps({
7
- "messages": [
8
- {
9
- "content": "You are a helpful assistant",
10
- "role": "system"
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
+ }'