File size: 889 Bytes
b6a5b6e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import yaml
import os
from smolagents import GradioUI, CodeAgent, LiteLLMModel, DuckDuckGoSearchTool, FinalAnswerTool

# Get current directory path
CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))

model = LiteLLMModel(
num_ctx=8192,
model_id='ollama_chat/qwen3:4b',
api_base='http://127.0.0.1:11434',
)

web_search = DuckDuckGoSearchTool()
final_answer = FinalAnswerTool()


with open(os.path.join(CURRENT_DIR, "prompts.yaml"), 'r') as stream:
    prompt_templates = yaml.safe_load(stream)

agent = CodeAgent(
    model=model,
    tools=[web_search],
    managed_agents=[],
    max_steps=20,
    verbosity_level=1,
    grammar=None,
    planning_interval=None,
    name=None,
    description=None,
    executor_type='local',
    executor_kwargs={},
    max_print_outputs_length=None,
    prompt_templates=prompt_templates
)
if __name__ == "__main__":
    GradioUI(agent).launch()