QuickLearnerAI commited on
Commit
edc46ec
·
verified ·
1 Parent(s): 7ae77ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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