Merge pull request #1518 from pipecat-ai/mb/openai-verse
Add verse voice and bump the OpenAI version
This commit is contained in:
@@ -31,7 +31,7 @@ dependencies = [
|
|||||||
"pyloudnorm~=0.1.1",
|
"pyloudnorm~=0.1.1",
|
||||||
"resampy~=0.4.3",
|
"resampy~=0.4.3",
|
||||||
"soxr~=0.5.0",
|
"soxr~=0.5.0",
|
||||||
"openai~=1.67.0"
|
"openai~=1.70.0"
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ from pipecat.frames.frames import (
|
|||||||
from pipecat.services.tts_service import TTSService
|
from pipecat.services.tts_service import TTSService
|
||||||
|
|
||||||
ValidVoice = Literal[
|
ValidVoice = Literal[
|
||||||
"alloy", "ash", "ballad", "coral", "echo", "fable", "onyx", "nova", "sage", "shimmer"
|
"alloy", "ash", "ballad", "coral", "echo", "fable", "onyx", "nova", "sage", "shimmer", "verse"
|
||||||
]
|
]
|
||||||
|
|
||||||
VALID_VOICES: Dict[str, ValidVoice] = {
|
VALID_VOICES: Dict[str, ValidVoice] = {
|
||||||
@@ -34,6 +34,7 @@ VALID_VOICES: Dict[str, ValidVoice] = {
|
|||||||
"nova": "nova",
|
"nova": "nova",
|
||||||
"sage": "sage",
|
"sage": "sage",
|
||||||
"shimmer": "shimmer",
|
"shimmer": "shimmer",
|
||||||
|
"verse": "verse",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user