MCPcopy Index your code
hub / github.com/MiniMax-AI/Mini-Agent / main

Function main

examples/03_session_notes.py:231–246  ·  view source on GitHub ↗

Run all demos.

()

Source from the content-addressed store, hash-verified

229
230
231async 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
249if __name__ == "__main__":

Callers 1

Calls 2

demo_direct_note_usageFunction · 0.85
demo_agent_with_notesFunction · 0.85

Tested by

no test coverage detected