fixed from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline in quickstart.md

from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline,

remove extra "," from the first line
This commit is contained in:
Sir Qasim 2025-03-21 06:58:47 +05:00 committed by GitHub
parent d65f05e1b6
commit 56f53caa36
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ agent = Agent(
We'll set up a simple voice pipeline, using [`SingleAgentVoiceWorkflow`][agents.voice.workflow.SingleAgentVoiceWorkflow] as the workflow.
```python
from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline,
from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline
pipeline = VoicePipeline(workflow=SingleAgentVoiceWorkflow(agent))
```