Spaces:
Sleeping
Sleeping
| from enum import Enum | |
| class NoteType(str, Enum): | |
| audio = "audio" | |
| text = "text" | |
| class NoteStatus(str, Enum): | |
| created = "created" | |
| processing = "processing" | |
| ready = "ready" | |
| error = "error" |
| from enum import Enum | |
| class NoteType(str, Enum): | |
| audio = "audio" | |
| text = "text" | |
| class NoteStatus(str, Enum): | |
| created = "created" | |
| processing = "processing" | |
| ready = "ready" | |
| error = "error" |