File size: 811 Bytes
8fe992b
8c01ffb
8fe992b
cc003cf
8c01ffb
cc003cf
8c01ffb
cc003cf
8c01ffb
 
 
 
 
 
 
 
 
 
 
 
 
 
8fe992b
8c01ffb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8fe992b
 
 
8c01ffb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

from smolagents import GradioUI, CodeAgent, HfApiModel


from scripts.web_search import DuckDuckGoSearchTool

from scripts.visit_webpage import VisitWebpageTool

from scripts.final_answer import FinalAnswerTool


model = HfApiModel()


web_search = DuckDuckGoSearchTool()

visit_webpage = VisitWebpageTool()

final_answer = FinalAnswerTool()


agent = CodeAgent(
    model=model,
    tools=[web_search, visit_webpage, final_answer],
    
    max_steps=6,
    
    verbosity_level=1,
    
    grammar=None,
    
    planning_interval=None,
    
    name=None,
    
    description=None,
    
    authorized_imports=['collections', 'itertools', 'statistics', 'stat', 'random', 'math', 'pandas', 'datetime', 'queue', 're', 'unicodedata', 'time'],
    
    prompts_path='./prompts.yaml'
)

GradioUI(agent).launch()