| 96 | |
| 97 | |
| 98 | class NotificationOptions: |
| 99 | def __init__(self, prompts_changed: bool = False, resources_changed: bool = False, tools_changed: bool = False): |
| 100 | self.prompts_changed = prompts_changed |
| 101 | self.resources_changed = resources_changed |
| 102 | self.tools_changed = tools_changed |
| 103 | |
| 104 | |
| 105 | @asynccontextmanager |
no outgoing calls