Amit Arora 292462b94c Add SRE Agent use case implementation
- Copy SRE Agent codebase to 02-use-cases/04-SRE-agent
- Update LICENSE link to reference main repository LICENSE
- Configure .gitignore to exclude wheel files from version control
2025-07-14 22:46:32 +00:00

25 lines
590 B
Python

#!/usr/bin/env python3
import asyncio
import sys
# Simple CLI wrapper for the multi-agent system
def main():
"""Main CLI entry point - runs the multi-agent system."""
try:
# Import and run the multi-agent system
from .multi_agent_langgraph import main as multi_agent_main
asyncio.run(multi_agent_main())
except ImportError as e:
print(f"Error importing multi-agent system: {e}")
sys.exit(1)
except Exception as e:
print(f"Error running multi-agent system: {e}")
sys.exit(1)
if __name__ == "__main__":
main()