Update app.py
Browse files
app.py
CHANGED
@@ -330,8 +330,9 @@ class ResearchAssistant:
|
|
330 |
# Initialize LLM
|
331 |
self.llm = ChatGroq(
|
332 |
api_key=groq_key,
|
333 |
-
model="llama3-70b-8192",
|
334 |
-
|
|
|
335 |
)
|
336 |
|
337 |
# Set up the prompt template
|
|
|
330 |
# Initialize LLM
|
331 |
self.llm = ChatGroq(
|
332 |
api_key=groq_key,
|
333 |
+
# model="llama3-70b-8192",
|
334 |
+
model = 'llama-3.3-70b-versatile',
|
335 |
+
temperature=0.4
|
336 |
)
|
337 |
|
338 |
# Set up the prompt template
|