Israelbliz/First_agent_template
0
1from smolagents import CodeAgent, HfApiModel, tool2from Gradio_UI import GradioUI3 4@tool5def ping() -> str:6 """Simple test tool"""7 return "pong"8 9model = HfApiModel(10 model_id="mistralai/Mistral-7B-Instruct-v0.2",11 max_tokens=512,12)13 14agent = CodeAgent(15 model=model,16 tools=[ping],17 max_steps=3,18)19 20GradioUI(agent).launch()21 