feat: house price prediction model integration

This commit is contained in:
nasim
2025-04-03 10:14:54 +02:00
parent 72375db5cd
commit 3aa78be3d6
22 changed files with 251 additions and 24 deletions
@@ -0,0 +1,6 @@
from pydantic import BaseModel
from backend.app.dtos.user.user_response import UserResponse
class UserListResponse(BaseModel):
users: list[UserResponse]
+6
View File
@@ -0,0 +1,6 @@
from pydantic import BaseModel
class UserResponse(BaseModel):
id: str
email: str