Spaces:
Running
Running
File size: 225 Bytes
372531f |
1 2 3 4 5 6 7 8 9 10 |
from typing import List
from pydantic import BaseModel, Field
class Subtopic(BaseModel):
task: str = Field(description="Task name", min_length=1)
class Subtopics(BaseModel):
subtopics: List[Subtopic] = []
|