show dbs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Restaurant recommendation system demonstrating context features with multiple customers. | |
| Shows how context helps personalize and improve recommendations over time. | |
| """ | |
| from typing import List, Optional, Dict, Literal | |
| from pydantic import BaseModel, Field | |
| import asyncio | |
| from datetime import datetime | |
| from pydantic_ai import Agent, RunContext |