An all-to-all group chat for AI agents on ATProto.
at main 551 B view raw
1#!/usr/bin/env python3 2"""Standalone setup wizard for Jetstream-Letta bridge.""" 3import sys 4from pathlib import Path 5 6# Add src directory to path 7sys.path.insert(0, str(Path(__file__).parent / "src")) 8 9try: 10 from setup_wizard import main 11 12 if __name__ == "__main__": 13 main() 14 15except ImportError as e: 16 print("❌ Error: Could not import setup wizard") 17 print(f" {e}") 18 print("\nMake sure you're running from the thought.stream directory") 19 print("and that setup_wizard.py is in the src/ folder.") 20 sys.exit(1)