JM8 commited on
Commit
2c85cd8
·
1 Parent(s): ff949ec

First agent fix typo

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,9 +7,9 @@ import os
7
  from Gradio_UI import GradioUI
8
  from tools.final_answer import FinalAnswerTool
9
  from tools.web_search import DuckDuckGoSearchTool
10
- from dotenv import load_env
11
 
12
- load_env()
13
 
14
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
15
  @tool
 
7
  from Gradio_UI import GradioUI
8
  from tools.final_answer import FinalAnswerTool
9
  from tools.web_search import DuckDuckGoSearchTool
10
+ from dotenv import load_dotenv
11
 
12
+ load_dotenv()
13
 
14
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
15
  @tool