__init__.py 926 B

1234567891011121314151617181920
  1. # Make the examples directory into a package to avoid top-level module name collisions.
  2. # This is needed so that mypy treats files like examples/customer_service/main.py and
  3. # examples/researcher_app/main.py as distinct modules rather than both named "main".
  4. """
  5. Agency Swarm Examples
  6. This package contains comprehensive examples demonstrating various Agency Swarm capabilities:
  7. - Multi-agent communication and coordination patterns
  8. - File processing, vision analysis, and content handling
  9. - Real-time streaming responses and event processing
  10. - Custom persistence and data management implementations
  11. - Response validation and error handling patterns
  12. - Agency context sharing between agents
  13. - Complex workflow orchestration across multiple agents
  14. Each example is self-contained and can be run independently with proper environment setup.
  15. See individual files for specific implementation details and usage instructions.
  16. """