Gary Simmons
create chess tools and refactor tests and tools via domains
bc3f6a6
raw
history blame
571 Bytes
"""
Tools package for the Agents Course Final Assignment
This package contains custom tools for the agent, including YouTube video analysis
and audio transcription capabilities.
"""
from libs.youtube.youtube_tools import analyze_youtube_video, get_youtube_video_info
from libs.transcription.transcription_tools import transcribe_audio
from libs.chess.chess_tools import analyze_chess_image, analyze_chess_position
__all__ = [
"analyze_youtube_video",
"get_youtube_video_info",
"transcribe_audio",
"analyze_chess_image",
"analyze_chess_position",
]