PotatoGuardAPI / schemas.py
Liantsoaxx08's picture
add LLM for recommendation
2c67191
Raw
History Blame Contribute Delete
188 Bytes
from pydantic import BaseModel
from typing import List
class GeneralResponse(BaseModel):
status: str
message: str
data : List[str]
class Request(BaseModel):
disease: str