Files
AiDA_Python/app/schemas/attribute_retrieve.py

13 lines
220 B
Python
Raw Normal View History

from pydantic import BaseModel
class CategoryRecognitionModel(BaseModel):
colony: str
sketch_img_url: str
class AttributeRecognitionModel(BaseModel):
category: str
colony: str
sketch_img_url: str