hertogateis commited on
Commit
85ab20e
·
verified ·
1 Parent(s): 3514214

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -31
app.py CHANGED
@@ -1,36 +1,22 @@
1
  import requests
2
- import json
3
 
4
- # Replace with your actual API key
5
- API_KEY = "DEEPSEEK_API_KEY"
6
- API_URL = "https://api.deepseek.com/v1/chat/completions" # Example endpoint, check documentation
7
-
8
- # Define the prompt in Bahasa Indonesia
9
- prompt = "Halo, bisakah kamu membantu saya membuat rencana perjalanan ke Bali?"
10
-
11
- # Prepare the payload
12
- payload = {
13
- "model": "deepseek-ai/DeepSeek-V3", # Replace with the model you want to use
14
- "messages": [
15
- {"role": "user", "content": prompt}
16
- ],
17
- "max_tokens": 150, # Adjust as needed
18
- "temperature": 0.7, # Adjust for creativity
19
- }
20
-
21
- # Set headers
22
  headers = {
23
- "Authorization": f"Bearer {API_KEY}",
24
  "Content-Type": "application/json",
 
25
  }
26
-
27
- # Make the API request
28
- response = requests.post(API_URL, headers=headers, data=json.dumps(payload))
29
-
30
- # Check the response
31
- if response.status_code == 200:
32
- result = response.json()
33
- generated_text = result['choices'][0]['message']['content']
34
- print("Generated Text:", generated_text)
35
- else:
36
- print("Error:", response.status_code, response.text)
 
 
 
 
 
1
  import requests
 
2
 
3
+ url = "https://api.hyperbolic.xyz/v1/chat/completions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  headers = {
 
5
  "Content-Type": "application/json",
6
+ "Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtaXRyYWxlc3RhcmlwZXJzYWRhQGdtYWlsLmNvbSIsImlhdCI6MTczNjUwMzQxMX0.yuIoZsH1jouAlixx_h_eQ-bltZ1sg4alrJHMHr1axvA"
7
  }
8
+ data = {
9
+ "messages": [
10
+ {
11
+ "role": "user",
12
+ "content": "What can I do in SF?"
13
+ }
14
+ ],
15
+ "model": "deepseek-ai/DeepSeek-V3",
16
+ "max_tokens": 512,
17
+ "temperature": 0.1,
18
+ "top_p": 0.9
19
+ }
20
+
21
+ response = requests.post(url, headers=headers, json=data)
22
+ print(response.json())