PRONGS-CHIRAG commited on
Commit
7ac8208
·
1 Parent(s): cb1a7f5

Resolved errors

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -4,13 +4,13 @@ from langchain_core.runnables import RunnableLambda
4
 
5
  # Import tools
6
  from tools import DuckDuckGoSearchTool, WeatherInfoTool, HubStatsTool
7
- from retriever import load_guest_dataset
8
 
9
  # Initialize all tools
10
- search_tool = DuckDuckGoSearchTool()
11
- weather_tool = WeatherInfoTool()
12
- hub_stats_tool = HubStatsTool()
13
- guest_info_tool = load_guest_dataset()
14
 
15
  # Define simple state container
16
  class AppState(dict): pass
 
4
 
5
  # Import tools
6
  from tools import DuckDuckGoSearchTool, WeatherInfoTool, HubStatsTool
7
+ from retriever import load_guest_dataset,GuestInfoTool
8
 
9
  # Initialize all tools
10
+ search_tool = DuckDuckGoSearchTool
11
+ weather_tool = WeatherInfoTool
12
+ hub_stats_tool = HubStatsTool
13
+ guest_info_tool = GuestInfoTool
14
 
15
  # Define simple state container
16
  class AppState(dict): pass