10 lines
157 B
Python
10 lines
157 B
Python
from enum import Enum
|
|
from typing import Literal
|
|
|
|
|
|
class Precision(str, Enum):
|
|
PCM_16 = "PCM_16"
|
|
|
|
|
|
TTSModels = Literal["chatterbox", "chatterbox-turbo"]
|