"""Run `uv pip install groq` to install dependencies."""
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.models.groq import GroqTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
url = "https://agno-public.s3.amazonaws.com/demo_data/sample_conversation.wav"
agent = Agent(
name="Groq Transcription Agent",
model=OpenAIChat(id="gpt-5.2"),
tools=[GroqTools(exclude_tools=["generate_speech"])],
)
agent.print_response(f"Please transcribe the audio file located at '{url}' to English")
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
pass