Run all demos.
()
| 116 | |
| 117 | |
| 118 | async def main(): |
| 119 | """Run all demos.""" |
| 120 | print("=" * 60) |
| 121 | print("Basic Tools Usage Examples") |
| 122 | print("=" * 60) |
| 123 | print("\nThese examples show how to use the core tools directly.") |
| 124 | print("In a real agent scenario, the LLM decides which tools to use.\n") |
| 125 | |
| 126 | await demo_write_tool() |
| 127 | await demo_read_tool() |
| 128 | await demo_edit_tool() |
| 129 | await demo_bash_tool() |
| 130 | |
| 131 | print("\n" + "=" * 60) |
| 132 | print("All demos completed! ✅") |
| 133 | print("=" * 60) |
| 134 | |
| 135 | |
| 136 | if __name__ == "__main__": |
no test coverage detected