Files
AiDA_Python/app/schemas/attribute_retrieve.py
2024-04-16 15:51:03 +08:00

13 lines
220 B
Python

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