JoseAndresLopez's picture
Upload folder using huggingface_hub
e9aced8 verified
Raw
History Blame Contribute Delete
387 Bytes
"""Herramientas disponibles para el agente."""
from .web_search import web_search
from .python_repl import python_repl, reset_repl
from .read_file import read_file
from .get_weather import get_weather
ALL_TOOLS = [web_search, python_repl, read_file, get_weather]
__all__ = [
"web_search",
"python_repl",
"reset_repl",
"read_file",
"get_weather",
"ALL_TOOLS",
]