Run all demos.
()
| 229 | |
| 230 | |
| 231 | async def main(): |
| 232 | """Run all demos.""" |
| 233 | print("=" * 60) |
| 234 | print("Session Note Tool Examples") |
| 235 | print("=" * 60) |
| 236 | print("\nSession Notes allow agents to remember context across sessions.") |
| 237 | print("This is a key feature for building production-ready agents.\n") |
| 238 | |
| 239 | # Run demos |
| 240 | await demo_direct_note_usage() |
| 241 | print("\n" * 2) |
| 242 | await demo_agent_with_notes() |
| 243 | |
| 244 | print("\n" + "=" * 60) |
| 245 | print("All demos completed! ✅") |
| 246 | print("=" * 60) |
| 247 | |
| 248 | |
| 249 | if __name__ == "__main__": |
no test coverage detected