vikramvasudevan's picture
Upload folder using huggingface_hub
a683f71 verified
from enum import Enum
from pydantic import BaseModel
class AudioRequest(BaseModel):
scripture_name: str
global_index: int
class AudioType(str, Enum):
recitation = "recitation"
virutham = "virutham"
upanyasam = "upanyasam"
santhai = "santhai"
any = "any"
none = "none"