File size: 603 Bytes
03c34b1 |
1 2 3 4 5 6 7 8 9 10 |
from pydantic import BaseModel, Field
class BusinessData(BaseModel):
name: str = Field(..., description="The name of the business or entity.")
price_rate: str = Field(..., description="The address of the business or entity.")
website: str = Field(..., description="The website URL of the business or entity.")
benefits: str = Field(..., description="The phone number of the business or entity.")
inclusions: str = Field(..., description="The inclusions of the business or entity.")
description: str = Field(..., description="A brief description of the business or entity.") |