Spaces:
Sleeping
Sleeping
Update categories/travel_cab/model.py
Browse files
categories/travel_cab/model.py
CHANGED
@@ -16,4 +16,5 @@ class InformationExtractedFromABillReceipt(BaseModel):
|
|
16 |
place_to: str = Field(..., title="place where journey end")
|
17 |
date_to: date = Field(..., title="date on which journey end (DD/MM/YYYY)")
|
18 |
time_to: time = Field(..., title="time at which journey end")
|
19 |
-
|
|
|
|
16 |
place_to: str = Field(..., title="place where journey end")
|
17 |
date_to: date = Field(..., title="date on which journey end (DD/MM/YYYY)")
|
18 |
time_to: time = Field(..., title="time at which journey end")
|
19 |
+
uids: str = Field(..., title="The bill number/invoice number")
|
20 |
+
total: float = Field(..., title="cost of journey ticket")
|