Run all demos.
()
| 191 | |
| 192 | |
| 193 | async def main(): |
| 194 | """Run all demos.""" |
| 195 | print("=" * 60) |
| 196 | print("Simple Agent Usage Examples") |
| 197 | print("=" * 60) |
| 198 | print("\nThese examples show how to create an agent and give it tasks.") |
| 199 | print("The agent uses LLM to decide which tools to call.\n") |
| 200 | |
| 201 | # Run demos |
| 202 | await demo_file_creation() |
| 203 | print("\n" * 2) |
| 204 | await demo_bash_task() |
| 205 | |
| 206 | print("\n" + "=" * 60) |
| 207 | print("All demos completed! ✅") |
| 208 | print("=" * 60) |
| 209 | |
| 210 | |
| 211 | if __name__ == "__main__": |
no test coverage detected