#!/usr/bin/env python3 """ Macha conversation interface - legacy compatibility wrapper. This module now uses the unified chat.py implementation. All discussion functionality has been moved to chat.py. """ # Import the unified implementation from chat import main as chat_main # Entry point if __name__ == "__main__": chat_main()