File size: 399 Bytes
a159b10
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from ui.interface import create_interface

if __name__ == "__main__":
    interface, target_word, counter_display, audio_input, start_btn, stop_btn, reset_btn = create_interface()

    print("✓ UI components created successfully")
    print("✓ Components: target_word, counter_display, audio_input, start_btn, stop_btn, reset_btn")
    print("\nLaunching UI preview...")

    interface.launch()