Pipeline
VoicePipeline
An opinionated voice agent pipeline. It works in three steps:
1. Transcribe audio input into text.
2. Run the provided workflow, which produces a sequence of text responses.
3. Convert the text responses into streaming audio output.
ソースコード位置: src/agents/voice/pipeline.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
__init__
__init__(
*,
workflow: VoiceWorkflowBase,
stt_model: STTModel | str | None = None,
tts_model: TTSModel | str | None = None,
config: VoicePipelineConfig | None = None,
)
Create a new voice pipeline.
引数:
| 名前 | タイプ | デスクリプション | デフォルト |
|---|---|---|---|
workflow
|
VoiceWorkflowBase
|
The workflow to run. See |
必須 |
stt_model
|
STTModel | str | None
|
The speech-to-text model to use. If not provided, a default OpenAI model will be used. |
None
|
tts_model
|
TTSModel | str | None
|
The text-to-speech model to use. If not provided, a default OpenAI model will be used. |
None
|
config
|
VoicePipelineConfig | None
|
The pipeline configuration. If not provided, a default configuration will be used. |
None
|
ソースコード位置: src/agents/voice/pipeline.py
run
async
run(
audio_input: AudioInput | StreamedAudioInput,
) -> StreamedAudioResult
Run the voice pipeline.
引数:
| 名前 | タイプ | デスクリプション | デフォルト |
|---|---|---|---|
audio_input
|
AudioInput | StreamedAudioInput
|
The audio input to process. This can either be an |
必須 |
戻り値:
| タイプ | デスクリプション |
|---|---|
StreamedAudioResult
|
A |
StreamedAudioResult
|
play them out. |