File size: 233 Bytes
28df1e8 | 1 2 3 4 5 6 7 8 9 | from typing import List
from pydantic import BaseModel, Field
class HotelQuery(BaseModel):
hotel_name: str
destination: str
class HotelSearchRequest(BaseModel):
hotels: List[HotelQuery] = Field(..., min_items=1) |