qq1023 commited on
Commit
5ca674a
1 Parent(s): 53901bc

Update categories/travel_cab/model.py

Browse files
Files changed (1) hide show
  1. categories/travel_cab/model.py +2 -1
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
- amount: float = Field(..., title="cost of journey ticket")
 
 
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")