Spaces:
Sleeping
Sleeping
File size: 842 Bytes
4d3e6cc ab1c97c 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 37 38 39 40 41 |
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,
max_new_tokens=4096,
temperature=0.6,
top_p=0.95,
repetition_penalty=1.1)
agent = CodeAgent(
tools=[ DuckDuckGoSearchTool(),
# ApiWebSearchTool(),
VisitWebpageTool(),
# WebSearchTool(),
WikipediaSearchTool(),
PythonInterpreterTool(),
UserInputTool(),
FinalAnswerTool()
],
model=model,
)
GradioUI(agent).launch()
|