From 5f7a0b950823eef6fa4aac6872277bc95fc9a733 Mon Sep 17 00:00:00 2001 From: Sir Qasim Date: Fri, 21 Mar 2025 06:58:47 +0500 Subject: [PATCH] fixed from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline in quickstart.md from agents.voice import SingleAgentVoiceWorkflow, VoicePipeline, remove extra "," from the first line --- docs/voice/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/voice/quickstart.md b/docs/voice/quickstart.md index 1b96d0c6..49c1026f 100644 --- a/docs/voice/quickstart.md +++ b/docs/voice/quickstart.md @@ -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)) ```