Spaces:
Sleeping
Sleeping
Update categories/random_/model.py
Browse files
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 |
...,
|