| 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.") |