MCPcopy Create free account
hub / github.com/MiniMax-AI/Mini-Agent / main

Function main

examples/04_full_agent.py:252–272  ·  view source on GitHub ↗

Run all demos.

()

Source from the content-addressed store, hash-verified

250
251
252async 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
275if __name__ == "__main__":

Callers 1

04_full_agent.pyFile · 0.70

Calls 2

demo_full_agentFunction · 0.85
demo_interactive_modeFunction · 0.85

Tested by

no test coverage detected