gitextract_a5srke5j/ ├── .dockerignore ├── .github/ │ └── FUNDING.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── RealtimeSTT/ │ ├── __init__.py │ ├── audio_input.py │ ├── audio_recorder.py │ ├── audio_recorder_client.py │ └── safepipe.py ├── RealtimeSTT_server/ │ ├── README.md │ ├── __init__.py │ ├── index.html │ ├── install_packages.py │ ├── stt_cli_client.py │ └── stt_server.py ├── __init__.py ├── docker-compose.yml ├── example_app/ │ ├── README.MD │ ├── install_cpu.bat │ ├── install_gpu.bat │ ├── start.bat │ └── ui_openai_voice_interface.py ├── example_browserclient/ │ ├── client.js │ ├── index.html │ ├── server.py │ └── start_server.bat ├── example_webserver/ │ ├── client.py │ ├── server.py │ └── stt_server.py ├── install_with_gpu_support.bat ├── requirements-gpu-torch.txt ├── requirements-gpu.txt ├── requirements.txt ├── setup.py ├── tests/ │ ├── README.md │ ├── advanced_talk.py │ ├── feed_audio.py │ ├── install_packages.py │ ├── minimalistic_talkbot.py │ ├── openai_voice_interface.py │ ├── openwakeword_test.py │ ├── realtime_loop_test.py │ ├── realtimestt_chinese.py │ ├── realtimestt_speechendpoint.py │ ├── realtimestt_speechendpoint_binary_classified.py │ ├── realtimestt_test.py │ ├── realtimestt_test_hotkeys_v2.py │ ├── realtimestt_test_stereomix.py │ ├── recorder_client.py │ ├── samanta.tflite │ ├── simple_test.py │ ├── suh_mahn_thuh.onnx │ ├── suh_man_tuh.onnx │ ├── translator.py │ ├── type_into_textbox.py │ └── vad_test.py └── win_installgpu_virtual_env.bat