alberto commited on
Commit
0d0af81
·
1 Parent(s): 90d6bcc

fix imports

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -3,7 +3,14 @@ import gradio as gr
3
  import requests
4
  import inspect
5
  import pandas as pd
6
- from smolagents import VisitWebpageTool, DuckDuckGoSearchTool, PythonInterpreterTool, FinalAnswerTool, TransformersModel, InferenceClientModel
 
 
 
 
 
 
 
7
  from smolagents.agents import CodeAgent
8
  from tools import VisitWikiPageTool, SpeechToTextTool
9
  from utils import QuestionLoader
 
3
  import requests
4
  import inspect
5
  import pandas as pd
6
+ from smolagents import (
7
+ VisitWebpageTool,
8
+ DuckDuckGoSearchTool,
9
+ WikipediaSearchTool,
10
+ PythonInterpreterTool,
11
+ FinalAnswerTool,
12
+ TransformersModel,
13
+ InferenceClientModel)
14
  from smolagents.agents import CodeAgent
15
  from tools import VisitWikiPageTool, SpeechToTextTool
16
  from utils import QuestionLoader