Spaces:
Sleeping
Sleeping
File size: 168 Bytes
e23acaf | 1 2 3 4 5 6 7 8 9 10 11 | from pydantic import BaseModel
from typing import List
class Structure(BaseModel):
name: str
class AnnotationOutput(BaseModel):
structures: List[Structure]
|