mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
9 lines
203 B
Python
9 lines
203 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class ElevenLabsModel(str, Enum):
|
||
|
"""Models available for Eleven Labs Text2Speech."""
|
||
|
|
||
|
MULTI_LINGUAL = "eleven_multilingual_v1"
|
||
|
MONO_LINGUAL = "eleven_monolingual_v1"
|