From ff9820259be3bbcf42e0e3576c7d9b4fb6f17184 Mon Sep 17 00:00:00 2001 From: ipu Date: Tue, 5 Aug 2025 12:38:56 +0300 Subject: [PATCH] fix tier float --- src/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models.py b/src/models.py index 2e880cc..69fe8b3 100644 --- a/src/models.py +++ b/src/models.py @@ -69,7 +69,7 @@ class EstimationRequest(BaseModel): class EstimationDetails(BaseModel): dtq: bool reason: str - tier: int + tier: float total_price: float class EstimationResult(BaseModel):