WordCounterApp / test_ui.py
ArseniyPerchik's picture
more
a159b10
raw
history blame contribute delete
399 Bytes
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()