Antoine101 commited on
Commit
c314b7b
·
verified ·
1 Parent(s): 5c0e17c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -75,7 +75,15 @@ rate_limiter = InMemoryRateLimiter(
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
 
 
75
 
76
  chat = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0, rate_limiter=rate_limiter)
77
  tools = [
78
+ multiply,
79
+ add,
80
+ subtract,
81
+ divide,
82
+ modulus,
83
+ wiki_search,
84
+ tavily_search,
85
+ arxiv_search,
86
+ youtube_video_loader
87
  ]
88
  chat_with_tools = chat.bind_tools(tools)
89