GatinhoEducado commited on
Commit
3d62ecb
·
verified ·
1 Parent(s): c9c977a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -9,7 +9,6 @@ from huggingface_hub import list_models
9
  from Gradio_UI import GradioUI
10
  import baostock as bs
11
  import pandas as pd
12
- from tools.house_drawing_tool import HouseDrawingTool
13
 
14
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
15
  @tool
@@ -99,8 +98,6 @@ final_answer = FinalAnswerTool()
99
  # Import tool from Hub
100
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
101
 
102
- house_draw = HouseDrawingTool()
103
-
104
  with open("prompts.yaml", 'r') as stream:
105
  prompt_templates = yaml.safe_load(stream)
106
 
 
9
  from Gradio_UI import GradioUI
10
  import baostock as bs
11
  import pandas as pd
 
12
 
13
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
14
  @tool
 
98
  # Import tool from Hub
99
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
100
 
 
 
101
  with open("prompts.yaml", 'r') as stream:
102
  prompt_templates = yaml.safe_load(stream)
103