Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
| 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" | |