DrishtiSharma commited on
Commit
470bcda
Β·
verified Β·
1 Parent(s): e175348

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -40,6 +40,7 @@ class LLMCallbackHandler(BaseCallbackHandler):
40
  llm = ChatGroq(
41
  temperature=0,
42
  model_name="groq/llama-3.3-70b-versatile",
 
43
  callbacks=[LLMCallbackHandler(Path("prompts.jsonl"))],
44
  )
45
 
 
40
  llm = ChatGroq(
41
  temperature=0,
42
  model_name="groq/llama-3.3-70b-versatile",
43
+ max_tokens=1024,
44
  callbacks=[LLMCallbackHandler(Path("prompts.jsonl"))],
45
  )
46