Spaces:
Sleeping
Sleeping
File size: 876 Bytes
4cae411 |
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 44 45 46 47 48 49 |
from smolagents import (
TransformersModel,
# load_tool,
DuckDuckGoSearchTool,
# ApiWebSearchTool,
VisitWebpageTool,
# WebSearchTool,
WikipediaSearchTool,
PythonInterpreterTool,
UserInputTool,
FinalAnswerTool,
CodeAgent,
InferenceClientModel,
GradioUI
)
MODEL_NAME = "Qwen/Qwen3-1.7B"
model =\
TransformersModel(
model_id=MODEL_NAME,
max_new_tokens=32768,
temperature=0.6,
top_p=0.95,
top_k=20,
repetition_penalty=1.1
)
agent = CodeAgent(
tools=[ DuckDuckGoSearchTool(),
# ApiWebSearchTool(),
VisitWebpageTool(),
# WebSearchTool(),
WikipediaSearchTool(),
PythonInterpreterTool(),
UserInputTool(),
FinalAnswerTool()
],
model=model,
)
GradioUI(agent).launch()
|