claytonsds commited on
Commit
c69af1e
·
verified ·
1 Parent(s): 026de81

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,10 +18,10 @@ token = os.environ.get("API_TOKEN")
18
  # ------------------------
19
  llm = ChatGoogleGenerativeAI(
20
  model="gemini-2.5-flash",
21
- temperature=0.7,api_key = token
 
22
  )
23
 
24
-
25
  # Global variable to store the QA chain
26
  chain = None
27
 
 
18
  # ------------------------
19
  llm = ChatGoogleGenerativeAI(
20
  model="gemini-2.5-flash",
21
+ temperature=0.7,api_key = token,
22
+ max_token =100
23
  )
24
 
 
25
  # Global variable to store the QA chain
26
  chain = None
27