Antoine101 commited on
Commit
cd08fb6
·
verified ·
1 Parent(s): 526ce64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -74,7 +74,9 @@ rate_limiter = InMemoryRateLimiter(
74
  )
75
 
76
  chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0, rate_limiter=rate_limiter)
77
- tools = []
 
 
78
  chat_with_tools = chat.bind_tools(tools)
79
 
80
  # load the system prompt from the file
 
74
  )
75
 
76
  chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0, rate_limiter=rate_limiter)
77
+ tools = [
78
+ wiki_loader
79
+ ]
80
  chat_with_tools = chat.bind_tools(tools)
81
 
82
  # load the system prompt from the file