Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,8 +83,8 @@ Answer the user's questions only based on the PDF content above. If the answer c
|
|
| 83 |
reponse = client.chat.completions.create(
|
| 84 |
model= "meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
|
| 85 |
messages= messages,
|
| 86 |
-
max_tokens= 5000 #5000
|
| 87 |
-
temperature= .7
|
| 88 |
)
|
| 89 |
assistance_reponse = response.choices[0].message.content
|
| 90 |
|
|
|
|
| 83 |
reponse = client.chat.completions.create(
|
| 84 |
model= "meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
|
| 85 |
messages= messages,
|
| 86 |
+
max_tokens= 5000, #5000
|
| 87 |
+
temperature= .7,
|
| 88 |
)
|
| 89 |
assistance_reponse = response.choices[0].message.content
|
| 90 |
|