qq1023 commited on
Commit
ab90a7d
·
1 Parent(s): 50b87bc

Update categories/random_/model.py

Browse files
Files changed (1) hide show
  1. categories/random_/model.py +1 -1
categories/random_/model.py CHANGED
@@ -59,7 +59,7 @@ class UIDDict(BaseModel):
59
  class InformationExtractedFromABillReceipt(BaseModel):
60
  uids: str = Field(..., title="The bill number/invoice number")
61
  #uids: UIDDict = Field(..., title="Invoice number and other UIDs")
62
- total: float = Field(..., title="Total amount or price")
63
  tax: Union[TaxItem, TaxItem1] = Field(..., title="The total tax amount")
64
  name: str = Field(
65
  ...,
 
59
  class InformationExtractedFromABillReceipt(BaseModel):
60
  uids: str = Field(..., title="The bill number/invoice number")
61
  #uids: UIDDict = Field(..., title="Invoice number and other UIDs")
62
+ total: float = Field(..., title="Total amount or price converted from the given currency to INR")
63
  tax: Union[TaxItem, TaxItem1] = Field(..., title="The total tax amount")
64
  name: str = Field(
65
  ...,