Run all demos.
()
| 250 | |
| 251 | |
| 252 | async def main(): |
| 253 | """Run all demos.""" |
| 254 | print("=" * 60) |
| 255 | print("Full Agent Examples") |
| 256 | print("=" * 60) |
| 257 | print("\nThese examples demonstrate the complete agent capabilities:") |
| 258 | print("- All basic tools (file operations, bash)") |
| 259 | print("- Session memory (persistent notes)") |
| 260 | print("- MCP tools (if configured)") |
| 261 | print("- Multi-turn conversations\n") |
| 262 | |
| 263 | # Run demos |
| 264 | await demo_full_agent() |
| 265 | print("\n" * 2) |
| 266 | await demo_interactive_mode() |
| 267 | |
| 268 | print("\n" + "=" * 60) |
| 269 | print("All demos completed! ✅") |
| 270 | print("=" * 60) |
| 271 | print("\n💡 Next step: Try the interactive mode with:") |
| 272 | print(" mini-agent\n") |
| 273 | |
| 274 | |
| 275 | if __name__ == "__main__": |
no test coverage detected