File size: 727 Bytes
4d3e6cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from smolagents import (
    TransformersModel,
    # load_tool,
    DuckDuckGoSearchTool,
    # ApiWebSearchTool,
    VisitWebpageTool,
    # WebSearchTool,
    WikipediaSearchTool,
    PythonInterpreterTool,
    UserInputTool,
    FinalAnswerTool,
    CodeAgent,
    InferenceClientModel,
    GradioUI
)

MODEL_NAME = "Qwen/Qwen3-0.6B"

model = TransformersModel(model_id=MODEL_NAME)

agent = CodeAgent(
    tools=[ DuckDuckGoSearchTool(),
            # ApiWebSearchTool(),
            VisitWebpageTool(),
            # WebSearchTool(),
            WikipediaSearchTool(),
            PythonInterpreterTool(),
            UserInputTool(),
            FinalAnswerTool()
    
    ],
    model=model,
)

GradioUI(agent).launch()