Compare commits

..

No commits in common. "7507a56237103e71c8c60b3bc177a9fcf3cb330b" and "98d2b8d19c5fa2d83245d655a4bf8ee251a2d9e4" have entirely different histories.

6 changed files with 0 additions and 22 deletions

View File

View File

@ -1,22 +0,0 @@
from pydantic import BaseModel
class LaptopCreate(BaseModel):
processor: str
ram: int
os: str
ssd: int
display: float
class LaptopResponse(BaseModel):
id: int
processor: str
ram: int
os: str
ssd: int
display: float
class Config:
orm_mode = True
class PredictPriceResponse(BaseModel):
predicted_price: float

View File