Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ansub committed Feb 12, 2025
1 parent 891ce46 commit e0ea2c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cookbook/agent_concepts/multimodal/audio_sentiment_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from agno.models.google import Gemini

agent = Agent(
model=Gemini(id="gemini-2.0-flash-exp"),
markdown=True,
model=Gemini(id="gemini-2.0-flash-exp"),
markdown=True,
)

url = "https://storage.googleapis.com/github-repo/generative-ai/gemini/use-cases/multimodal-sentiment-analysis/sample_conversation.wav"
Expand All @@ -16,7 +16,7 @@
# Give a sentiment analysis of this audio conversation. Use speaker A, speaker B to identify speakers.

agent.print_response(
"Give a sentiment analysis of this audio conversation. Use speaker A, speaker B to identify speakers.",
audio=[Audio(content=audio_content)],
stream=True,
"Give a sentiment analysis of this audio conversation. Use speaker A, speaker B to identify speakers.",
audio=[Audio(content=audio_content)],
stream=True,
)

0 comments on commit e0ea2c8

Please sign in to comment.