#!/usr/bin/env python3 """ Macha conversation interface - legacy compatibility wrapper. This module now uses the unified chat.py implementation. """ # Import the unified implementation from chat import ask_main # Entry point if __name__ == "__main__": ask_main()