24 lines
622 B
Python
24 lines
622 B
Python
"""Tools module — agent-exposed wrappers.
|
|
|
|
Re-exports are intentionally minimal during the ``unfuck`` refactor.
|
|
Tool wiring (registry / specs / LLM-facing surface) is the last
|
|
chunk of work on this branch; until then, importers should reach
|
|
into the submodules directly (``alfred.agent.tools.filesystem``, …).
|
|
"""
|
|
|
|
from .api import (
|
|
add_torrent_by_index,
|
|
add_torrent_to_qbittorrent,
|
|
find_torrent,
|
|
get_torrent_by_index,
|
|
)
|
|
from .language import set_language
|
|
|
|
__all__ = [
|
|
"find_torrent",
|
|
"get_torrent_by_index",
|
|
"add_torrent_to_qbittorrent",
|
|
"add_torrent_by_index",
|
|
"set_language",
|
|
]
|