ashhal commited on
Commit
309a27d
·
verified ·
1 Parent(s): a9073ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -160,10 +160,10 @@ class PowerSystemsConsultant:
160
  Keep it technically accurate but accessible."""
161
 
162
  response = self.groq_client.chat.completions.create(
163
- model="mixtral-8x7b-32768",
164
  messages=[{"role": "user", "content": prompt}],
165
- max_tokens=1500,
166
- temperature=0.6
167
  )
168
 
169
  return response.choices[0].message.content
 
160
  Keep it technically accurate but accessible."""
161
 
162
  response = self.groq_client.chat.completions.create(
163
+ model="llama3-70b-8192",
164
  messages=[{"role": "user", "content": prompt}],
165
+ max_tokens=2000,
166
+ temperature=0.8
167
  )
168
 
169
  return response.choices[0].message.content