Spaces:
Sleeping
Sleeping
File size: 401 Bytes
24510fe |
1 2 3 4 5 6 7 8 9 |
from pydantic import BaseModel, Field
class SongDescriptions(BaseModel):
song_description_1: str = Field(description="description of the first song")
song_description_2: str = Field(description="description of the second song")
song_description_3: str = Field(description="description of the third song")
song_description_4: str = Field(description="description of the fourth song")
|