File size: 922 Bytes
c641d5f | 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 | """Deterministic tools and smolagents adapters."""
from .audio import transcribe_audio
from .image_chess import analyze_chess_fen
from .markdown_logic import analyze_markdown_operation, solve_markdown_question
from .python_exec import execute_python_file
from .spreadsheet import (
answer_spreadsheet_question,
describe_workbook,
filter_rows,
inspect_spreadsheet,
read_sheet,
sum_column,
)
from .text_transform import solve_text_transformation
from .web import fetch_url
from .youtube import fetch_youtube_transcript
__all__ = [
"analyze_chess_fen",
"analyze_markdown_operation",
"answer_spreadsheet_question",
"describe_workbook",
"execute_python_file",
"fetch_url",
"fetch_youtube_transcript",
"filter_rows",
"inspect_spreadsheet",
"read_sheet",
"solve_markdown_question",
"solve_text_transformation",
"sum_column",
"transcribe_audio",
]
|