├── .coveragerc ├── .dockerignore ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .python-version ├── .ruff.toml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── api ├── __init__.py ├── src │ ├── builds │ │ └── v1_0 │ │ │ └── config.json │ ├── core │ │ ├── __init__.py │ │ ├── config.py │ │ ├── don_quixote.txt │ │ ├── model_config.py │ │ ├── openai_mappings.json │ │ └── paths.py │ ├── inference │ │ ├── __init__.py │ │ ├── base.py │ │ ├── kokoro_v1.py │ │ ├── model_manager.py │ │ └── voice_manager.py │ ├── main.py │ ├── models │ │ └── v1_0 │ │ │ └── config.json │ ├── routers │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── development.py │ │ ├── openai_compatible.py │ │ └── web_player.py │ ├── services │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── streaming_audio_writer.py │ │ ├── temp_manager.py │ │ ├── text_processing │ │ │ ├── __init__.py │ │ │ ├── normalizer.py │ │ │ ├── phonemizer.py │ │ │ ├── text_processor.py │ │ │ └── vocabulary.py │ │ └── tts_service.py │ ├── structures │ │ ├── __init__.py │ │ ├── custom_responses.py │ │ ├── model_schemas.py │ │ ├── schemas.py │ │ └── text_schemas.py │ └── voices │ │ └── v1_0 │ │ ├── af_alloy.pt │ │ ├── af_aoede.pt │ │ ├── af_bella.pt │ │ ├── af_heart.pt │ │ ├── af_jadzia.pt │ │ ├── af_jessica.pt │ │ ├── af_kore.pt │ │ ├── af_nicole.pt │ │ ├── af_nova.pt │ │ ├── af_river.pt │ │ ├── af_sarah.pt │ │ ├── af_sky.pt │ │ ├── af_v0.pt │ │ ├── af_v0bella.pt │ │ ├── af_v0irulan.pt │ │ ├── af_v0nicole.pt │ │ ├── af_v0sarah.pt │ │ ├── af_v0sky.pt │ │ ├── am_adam.pt │ │ ├── am_echo.pt │ │ ├── am_eric.pt │ │ ├── am_fenrir.pt │ │ ├── am_liam.pt │ │ ├── am_michael.pt │ │ ├── am_onyx.pt │ │ ├── am_puck.pt │ │ ├── am_santa.pt │ │ ├── am_v0adam.pt │ │ ├── am_v0gurney.pt │ │ ├── am_v0michael.pt │ │ ├── bf_alice.pt │ │ ├── bf_emma.pt │ │ ├── bf_lily.pt │ │ ├── bf_v0emma.pt │ │ ├── bf_v0isabella.pt │ │ ├── bm_daniel.pt │ │ ├── bm_fable.pt │ │ ├── bm_george.pt │ │ ├── bm_lewis.pt │ │ ├── bm_v0george.pt │ │ ├── bm_v0lewis.pt │ │ ├── ef_dora.pt │ │ ├── em_alex.pt │ │ ├── em_santa.pt │ │ ├── ff_siwis.pt │ │ ├── hf_alpha.pt │ │ ├── hf_beta.pt │ │ ├── hm_omega.pt │ │ ├── hm_psi.pt │ │ ├── if_sara.pt │ │ ├── im_nicola.pt │ │ ├── jf_alpha.pt │ │ ├── jf_gongitsune.pt │ │ ├── jf_nezumi.pt │ │ ├── jf_tebukuro.pt │ │ ├── jm_kumo.pt │ │ ├── pf_dora.pt │ │ ├── pm_alex.pt │ │ ├── pm_santa.pt │ │ ├── zf_xiaobei.pt │ │ ├── zf_xiaoni.pt │ │ ├── zf_xiaoxiao.pt │ │ ├── zf_xiaoyi.pt │ │ ├── zm_yunjian.pt │ │ ├── zm_yunxi.pt │ │ ├── zm_yunxia.pt │ │ └── zm_yunyang.pt └── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_audio_service.py │ ├── test_data │ ├── generate_test_data.py │ └── test_audio.npy │ ├── test_development.py │ ├── test_kokoro_v1.py │ ├── test_normalizer.py │ ├── test_openai_endpoints.py │ ├── test_paths.py │ ├── test_text_processor.py │ └── test_tts_service.py ├── assets ├── cpu_first_token_timeline_stream_openai.png ├── docs-screenshot.png ├── format_comparison.png ├── gpu_first_token_latency_direct.png ├── gpu_first_token_latency_openai.png ├── gpu_first_token_timeline_direct.png ├── gpu_first_token_timeline_openai.png ├── gpu_processing_time.png ├── gpu_realtime_factor.png ├── gpu_total_time_latency_direct.png ├── gpu_total_time_latency_openai.png ├── voice_analysis.png └── webui-screenshot.png ├── charts └── kokoro-fastapi │ ├── .helmignore │ ├── Chart.yaml │ ├── examples │ ├── aks-tls-values.yaml │ └── gpu-operator-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── hpa.yaml │ ├── ingress.yaml │ ├── kokoro-tts-deployment.yaml │ ├── kokoro-tts-service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── debug.http ├── dev ├── Test Phon.py ├── Test Threads.py ├── Test copy 2.py ├── Test copy.py ├── Test money.py ├── Test num.py └── Test.py ├── docker-bake.hcl ├── docker ├── build.sh ├── cpu │ ├── .dockerignore │ ├── Dockerfile │ └── docker-compose.yml ├── gpu │ ├── .dockerignore │ ├── Dockerfile │ └── docker-compose.yml └── scripts │ ├── download_model.py │ ├── download_model.sh │ └── entrypoint.sh ├── docs ├── architecture │ ├── espeak_setup_fix.md │ └── streaming_audio_writer_analysis.md ├── requirements.in └── requirements.txt ├── examples ├── __init__.py ├── assorted_checks │ ├── __init__.py │ ├── benchmarks │ │ ├── __init__.py │ │ ├── benchmark_first_token.py │ │ ├── benchmark_first_token_stream_unified.py │ │ ├── benchmark_tts_rtf.py │ │ ├── depr_benchmark_tts.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── shared_benchmark_utils.py │ │ │ ├── shared_plotting.py │ │ │ ├── shared_utils.py │ │ │ └── stream_utils.py │ │ ├── output_data │ │ │ ├── cpu_benchmark_results_rtf.json │ │ │ ├── cpu_benchmark_stats_rtf.txt │ │ │ ├── first_token_benchmark_stream.json │ │ │ ├── first_token_benchmark_stream_openai.json │ │ │ ├── gpu_benchmark_results_rtf.json │ │ │ └── gpu_benchmark_stats_rtf.txt │ │ ├── output_plots │ │ │ ├── cpu_processing_time_rtf.png │ │ │ ├── cpu_realtime_factor_rtf.png │ │ │ ├── cpu_system_usage_rtf.png │ │ │ ├── first_token_latency_stream.png │ │ │ ├── first_token_latency_stream_openai.png │ │ │ ├── first_token_timeline_stream.png │ │ │ ├── first_token_timeline_stream_openai.png │ │ │ ├── gpu_processing_time_rtf.png │ │ │ ├── gpu_realtime_factor_rtf.png │ │ │ ├── gpu_system_usage_rtf.png │ │ │ ├── total_time_latency_stream.png │ │ │ └── total_time_latency_stream_openai.png │ │ └── the_time_machine_hg_wells.txt │ ├── generate_readme_plots.py │ ├── test_combinations │ │ ├── test_analyze_combined_voices.py │ │ └── test_download_voice.py │ ├── test_formats │ │ └── test_audio_formats.py │ ├── test_normalizer.py │ ├── test_openai │ │ └── test_openai_tts.py │ ├── test_voices │ │ ├── analyze_voice_dimensions.py │ │ ├── test_all_voices.py │ │ └── trim_voice_dimensions.py │ ├── validate_wav.py │ └── validate_wavs.py ├── audio_analysis.png ├── captioned_speech_example.py ├── openai_streaming_audio.py ├── phoneme_examples │ ├── examples │ │ └── phoneme_examples │ │ │ └── output │ │ │ └── phoneme_test.wav │ ├── generate_phonemes.py │ └── test_phoneme_generation.py ├── requirements.txt ├── simul_file_test.py ├── simul_openai_streaming_audio.py ├── simul_speaker_test.py ├── speech.mp3 ├── stream_tts_playback.py ├── streaming_refactor │ ├── benchmark_unified_streaming.py │ └── test_unified_streaming.py └── voice_samples │ ├── speech_af.mp3 │ ├── speech_af_bella.mp3 │ ├── speech_af_nicole.mp3 │ ├── speech_af_sarah.mp3 │ ├── speech_am_adam.mp3 │ ├── speech_am_michael.mp3 │ ├── speech_bf_emma.mp3 │ ├── speech_bf_isabella.mp3 │ ├── speech_bm_george.mp3 │ └── speech_bm_lewis.mp3 ├── githubbanner.png ├── pyproject.toml ├── pytest.ini ├── scripts ├── fix_misaki.py ├── update_badges.py └── update_version.py ├── start-cpu.ps1 ├── start-cpu.sh ├── start-gpu.ps1 ├── start-gpu.sh ├── start-gpu_mac.sh ├── ui ├── Dockerfile ├── GUIBanner.png ├── GradioScreenShot.png ├── app.py ├── data │ └── inputs │ │ └── test_timemachine.txt ├── depr_tests │ ├── conftest.py │ ├── test_api.py │ ├── test_components.py │ ├── test_files.py │ ├── test_handlers.py │ ├── test_input.py │ └── test_interface.py └── lib │ ├── __init__.py │ ├── api.py │ ├── components │ ├── __init__.py │ ├── input.py │ ├── model.py │ └── output.py │ ├── config.py │ ├── files.py │ ├── handlers.py │ └── interface.py └── web ├── favicon.svg ├── index.html ├── siriwave.js ├── src ├── App.js ├── components │ ├── PlayerControls.js │ ├── TextEditor.js │ ├── VoiceSelector.js │ └── WaveVisualizer.js ├── services │ ├── AudioService.js │ └── VoiceService.js └── state │ └── PlayerState.js └── styles ├── badges.css ├── base.css ├── controls.css ├── forms.css ├── header.css ├── layout.css ├── player.css └── responsive.css /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/.ruff.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.4 -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | # Make api directory a Python package 2 | -------------------------------------------------------------------------------- /api/src/builds/v1_0/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/builds/v1_0/config.json -------------------------------------------------------------------------------- /api/src/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/__init__.py -------------------------------------------------------------------------------- /api/src/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/config.py -------------------------------------------------------------------------------- /api/src/core/don_quixote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/don_quixote.txt -------------------------------------------------------------------------------- /api/src/core/model_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/model_config.py -------------------------------------------------------------------------------- /api/src/core/openai_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/openai_mappings.json -------------------------------------------------------------------------------- /api/src/core/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/core/paths.py -------------------------------------------------------------------------------- /api/src/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/inference/__init__.py -------------------------------------------------------------------------------- /api/src/inference/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/inference/base.py -------------------------------------------------------------------------------- /api/src/inference/kokoro_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/inference/kokoro_v1.py -------------------------------------------------------------------------------- /api/src/inference/model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/inference/model_manager.py -------------------------------------------------------------------------------- /api/src/inference/voice_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/inference/voice_manager.py -------------------------------------------------------------------------------- /api/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/main.py -------------------------------------------------------------------------------- /api/src/models/v1_0/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/models/v1_0/config.json -------------------------------------------------------------------------------- /api/src/routers/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /api/src/routers/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/routers/debug.py -------------------------------------------------------------------------------- /api/src/routers/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/routers/development.py -------------------------------------------------------------------------------- /api/src/routers/openai_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/routers/openai_compatible.py -------------------------------------------------------------------------------- /api/src/routers/web_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/routers/web_player.py -------------------------------------------------------------------------------- /api/src/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/__init__.py -------------------------------------------------------------------------------- /api/src/services/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/audio.py -------------------------------------------------------------------------------- /api/src/services/streaming_audio_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/streaming_audio_writer.py -------------------------------------------------------------------------------- /api/src/services/temp_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/temp_manager.py -------------------------------------------------------------------------------- /api/src/services/text_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/text_processing/__init__.py -------------------------------------------------------------------------------- /api/src/services/text_processing/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/text_processing/normalizer.py -------------------------------------------------------------------------------- /api/src/services/text_processing/phonemizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/text_processing/phonemizer.py -------------------------------------------------------------------------------- /api/src/services/text_processing/text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/text_processing/text_processor.py -------------------------------------------------------------------------------- /api/src/services/text_processing/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/text_processing/vocabulary.py -------------------------------------------------------------------------------- /api/src/services/tts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/services/tts_service.py -------------------------------------------------------------------------------- /api/src/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/structures/__init__.py -------------------------------------------------------------------------------- /api/src/structures/custom_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/structures/custom_responses.py -------------------------------------------------------------------------------- /api/src/structures/model_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/structures/model_schemas.py -------------------------------------------------------------------------------- /api/src/structures/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/structures/schemas.py -------------------------------------------------------------------------------- /api/src/structures/text_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/structures/text_schemas.py -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_alloy.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_alloy.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_aoede.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_aoede.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_bella.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_bella.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_heart.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_heart.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_jadzia.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_jadzia.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_jessica.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_jessica.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_kore.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_kore.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_nicole.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_nicole.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_nova.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_nova.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_river.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_river.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_sarah.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_sarah.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_sky.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_sky.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0bella.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0bella.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0irulan.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0irulan.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0nicole.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0nicole.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0sarah.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0sarah.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/af_v0sky.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/af_v0sky.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_adam.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_adam.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_echo.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_echo.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_eric.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_eric.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_fenrir.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_fenrir.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_liam.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_liam.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_michael.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_michael.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_onyx.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_onyx.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_puck.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_puck.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_santa.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_santa.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_v0adam.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_v0adam.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_v0gurney.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_v0gurney.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/am_v0michael.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/am_v0michael.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bf_alice.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bf_alice.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bf_emma.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bf_emma.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bf_lily.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bf_lily.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bf_v0emma.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bf_v0emma.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bf_v0isabella.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bf_v0isabella.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_daniel.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_daniel.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_fable.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_fable.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_george.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_george.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_lewis.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_lewis.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_v0george.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_v0george.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/bm_v0lewis.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/bm_v0lewis.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/ef_dora.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/ef_dora.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/em_alex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/em_alex.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/em_santa.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/em_santa.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/ff_siwis.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/ff_siwis.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/hf_alpha.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/hf_alpha.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/hf_beta.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/hf_beta.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/hm_omega.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/hm_omega.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/hm_psi.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/hm_psi.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/if_sara.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/if_sara.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/im_nicola.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/im_nicola.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/jf_alpha.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/jf_alpha.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/jf_gongitsune.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/jf_gongitsune.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/jf_nezumi.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/jf_nezumi.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/jf_tebukuro.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/jf_tebukuro.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/jm_kumo.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/jm_kumo.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/pf_dora.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/pf_dora.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/pm_alex.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/pm_alex.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/pm_santa.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/pm_santa.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zf_xiaobei.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zf_xiaobei.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zf_xiaoni.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zf_xiaoni.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zf_xiaoxiao.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zf_xiaoxiao.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zf_xiaoyi.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zf_xiaoyi.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zm_yunjian.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zm_yunjian.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zm_yunxi.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zm_yunxi.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zm_yunxia.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zm_yunxia.pt -------------------------------------------------------------------------------- /api/src/voices/v1_0/zm_yunyang.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/src/voices/v1_0/zm_yunyang.pt -------------------------------------------------------------------------------- /api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Make tests directory a Python package 2 | -------------------------------------------------------------------------------- /api/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/conftest.py -------------------------------------------------------------------------------- /api/tests/test_audio_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_audio_service.py -------------------------------------------------------------------------------- /api/tests/test_data/generate_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_data/generate_test_data.py -------------------------------------------------------------------------------- /api/tests/test_data/test_audio.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_data/test_audio.npy -------------------------------------------------------------------------------- /api/tests/test_development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_development.py -------------------------------------------------------------------------------- /api/tests/test_kokoro_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_kokoro_v1.py -------------------------------------------------------------------------------- /api/tests/test_normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_normalizer.py -------------------------------------------------------------------------------- /api/tests/test_openai_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_openai_endpoints.py -------------------------------------------------------------------------------- /api/tests/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_paths.py -------------------------------------------------------------------------------- /api/tests/test_text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_text_processor.py -------------------------------------------------------------------------------- /api/tests/test_tts_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/api/tests/test_tts_service.py -------------------------------------------------------------------------------- /assets/cpu_first_token_timeline_stream_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/cpu_first_token_timeline_stream_openai.png -------------------------------------------------------------------------------- /assets/docs-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/docs-screenshot.png -------------------------------------------------------------------------------- /assets/format_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/format_comparison.png -------------------------------------------------------------------------------- /assets/gpu_first_token_latency_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_first_token_latency_direct.png -------------------------------------------------------------------------------- /assets/gpu_first_token_latency_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_first_token_latency_openai.png -------------------------------------------------------------------------------- /assets/gpu_first_token_timeline_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_first_token_timeline_direct.png -------------------------------------------------------------------------------- /assets/gpu_first_token_timeline_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_first_token_timeline_openai.png -------------------------------------------------------------------------------- /assets/gpu_processing_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_processing_time.png -------------------------------------------------------------------------------- /assets/gpu_realtime_factor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_realtime_factor.png -------------------------------------------------------------------------------- /assets/gpu_total_time_latency_direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_total_time_latency_direct.png -------------------------------------------------------------------------------- /assets/gpu_total_time_latency_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/gpu_total_time_latency_openai.png -------------------------------------------------------------------------------- /assets/voice_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/voice_analysis.png -------------------------------------------------------------------------------- /assets/webui-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/assets/webui-screenshot.png -------------------------------------------------------------------------------- /charts/kokoro-fastapi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/.helmignore -------------------------------------------------------------------------------- /charts/kokoro-fastapi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/Chart.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/examples/aks-tls-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/examples/aks-tls-values.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/examples/gpu-operator-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/examples/gpu-operator-values.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/kokoro-tts-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/kokoro-tts-deployment.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/kokoro-tts-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/kokoro-tts-service.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/kokoro-fastapi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/charts/kokoro-fastapi/values.yaml -------------------------------------------------------------------------------- /debug.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/debug.http -------------------------------------------------------------------------------- /dev/Test Phon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test Phon.py -------------------------------------------------------------------------------- /dev/Test Threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test Threads.py -------------------------------------------------------------------------------- /dev/Test copy 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test copy 2.py -------------------------------------------------------------------------------- /dev/Test copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test copy.py -------------------------------------------------------------------------------- /dev/Test money.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test money.py -------------------------------------------------------------------------------- /dev/Test num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test num.py -------------------------------------------------------------------------------- /dev/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/dev/Test.py -------------------------------------------------------------------------------- /docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker-bake.hcl -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/cpu/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/cpu/.dockerignore -------------------------------------------------------------------------------- /docker/cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/cpu/Dockerfile -------------------------------------------------------------------------------- /docker/cpu/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/cpu/docker-compose.yml -------------------------------------------------------------------------------- /docker/gpu/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/gpu/.dockerignore -------------------------------------------------------------------------------- /docker/gpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/gpu/Dockerfile -------------------------------------------------------------------------------- /docker/gpu/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/gpu/docker-compose.yml -------------------------------------------------------------------------------- /docker/scripts/download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/scripts/download_model.py -------------------------------------------------------------------------------- /docker/scripts/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/scripts/download_model.sh -------------------------------------------------------------------------------- /docker/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docker/scripts/entrypoint.sh -------------------------------------------------------------------------------- /docs/architecture/espeak_setup_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docs/architecture/espeak_setup_fix.md -------------------------------------------------------------------------------- /docs/architecture/streaming_audio_writer_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docs/architecture/streaming_audio_writer_analysis.md -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/assorted_checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/benchmark_first_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/benchmark_first_token.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/benchmark_first_token_stream_unified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/benchmark_first_token_stream_unified.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/benchmark_tts_rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/benchmark_tts_rtf.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/depr_benchmark_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/depr_benchmark_tts.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/lib/shared_benchmark_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/lib/shared_benchmark_utils.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/lib/shared_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/lib/shared_plotting.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/lib/shared_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/lib/shared_utils.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/lib/stream_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/lib/stream_utils.py -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/cpu_benchmark_results_rtf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/cpu_benchmark_results_rtf.json -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/cpu_benchmark_stats_rtf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/cpu_benchmark_stats_rtf.txt -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/first_token_benchmark_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/first_token_benchmark_stream.json -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/first_token_benchmark_stream_openai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/first_token_benchmark_stream_openai.json -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/gpu_benchmark_results_rtf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/gpu_benchmark_results_rtf.json -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_data/gpu_benchmark_stats_rtf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_data/gpu_benchmark_stats_rtf.txt -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/cpu_processing_time_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/cpu_processing_time_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/cpu_realtime_factor_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/cpu_realtime_factor_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/cpu_system_usage_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/cpu_system_usage_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/first_token_latency_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/first_token_latency_stream.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/first_token_latency_stream_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/first_token_latency_stream_openai.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/first_token_timeline_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/first_token_timeline_stream.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/first_token_timeline_stream_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/first_token_timeline_stream_openai.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/gpu_processing_time_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/gpu_processing_time_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/gpu_realtime_factor_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/gpu_realtime_factor_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/gpu_system_usage_rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/gpu_system_usage_rtf.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/total_time_latency_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/total_time_latency_stream.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/output_plots/total_time_latency_stream_openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/output_plots/total_time_latency_stream_openai.png -------------------------------------------------------------------------------- /examples/assorted_checks/benchmarks/the_time_machine_hg_wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/benchmarks/the_time_machine_hg_wells.txt -------------------------------------------------------------------------------- /examples/assorted_checks/generate_readme_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/generate_readme_plots.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_combinations/test_analyze_combined_voices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_combinations/test_analyze_combined_voices.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_combinations/test_download_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_combinations/test_download_voice.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_formats/test_audio_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_formats/test_audio_formats.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_normalizer.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_openai/test_openai_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_openai/test_openai_tts.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_voices/analyze_voice_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_voices/analyze_voice_dimensions.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_voices/test_all_voices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_voices/test_all_voices.py -------------------------------------------------------------------------------- /examples/assorted_checks/test_voices/trim_voice_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/test_voices/trim_voice_dimensions.py -------------------------------------------------------------------------------- /examples/assorted_checks/validate_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/validate_wav.py -------------------------------------------------------------------------------- /examples/assorted_checks/validate_wavs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/assorted_checks/validate_wavs.py -------------------------------------------------------------------------------- /examples/audio_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/audio_analysis.png -------------------------------------------------------------------------------- /examples/captioned_speech_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/captioned_speech_example.py -------------------------------------------------------------------------------- /examples/openai_streaming_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/openai_streaming_audio.py -------------------------------------------------------------------------------- /examples/phoneme_examples/examples/phoneme_examples/output/phoneme_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/phoneme_examples/examples/phoneme_examples/output/phoneme_test.wav -------------------------------------------------------------------------------- /examples/phoneme_examples/generate_phonemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/phoneme_examples/generate_phonemes.py -------------------------------------------------------------------------------- /examples/phoneme_examples/test_phoneme_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/phoneme_examples/test_phoneme_generation.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>=1.0.0 2 | pyaudio>=0.2.13 3 | -------------------------------------------------------------------------------- /examples/simul_file_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/simul_file_test.py -------------------------------------------------------------------------------- /examples/simul_openai_streaming_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/simul_openai_streaming_audio.py -------------------------------------------------------------------------------- /examples/simul_speaker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/simul_speaker_test.py -------------------------------------------------------------------------------- /examples/speech.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/speech.mp3 -------------------------------------------------------------------------------- /examples/stream_tts_playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/stream_tts_playback.py -------------------------------------------------------------------------------- /examples/streaming_refactor/benchmark_unified_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/streaming_refactor/benchmark_unified_streaming.py -------------------------------------------------------------------------------- /examples/streaming_refactor/test_unified_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/streaming_refactor/test_unified_streaming.py -------------------------------------------------------------------------------- /examples/voice_samples/speech_af.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_af.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_af_bella.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_af_bella.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_af_nicole.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_af_nicole.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_af_sarah.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_af_sarah.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_am_adam.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_am_adam.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_am_michael.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_am_michael.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_bf_emma.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_bf_emma.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_bf_isabella.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_bf_isabella.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_bm_george.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_bm_george.mp3 -------------------------------------------------------------------------------- /examples/voice_samples/speech_bm_lewis.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/examples/voice_samples/speech_bm_lewis.mp3 -------------------------------------------------------------------------------- /githubbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/githubbanner.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/fix_misaki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/scripts/fix_misaki.py -------------------------------------------------------------------------------- /scripts/update_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/scripts/update_badges.py -------------------------------------------------------------------------------- /scripts/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/scripts/update_version.py -------------------------------------------------------------------------------- /start-cpu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/start-cpu.ps1 -------------------------------------------------------------------------------- /start-cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/start-cpu.sh -------------------------------------------------------------------------------- /start-gpu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/start-gpu.ps1 -------------------------------------------------------------------------------- /start-gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/start-gpu.sh -------------------------------------------------------------------------------- /start-gpu_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/start-gpu_mac.sh -------------------------------------------------------------------------------- /ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/Dockerfile -------------------------------------------------------------------------------- /ui/GUIBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/GUIBanner.png -------------------------------------------------------------------------------- /ui/GradioScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/GradioScreenShot.png -------------------------------------------------------------------------------- /ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/app.py -------------------------------------------------------------------------------- /ui/data/inputs/test_timemachine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/data/inputs/test_timemachine.txt -------------------------------------------------------------------------------- /ui/depr_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/conftest.py -------------------------------------------------------------------------------- /ui/depr_tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_api.py -------------------------------------------------------------------------------- /ui/depr_tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_components.py -------------------------------------------------------------------------------- /ui/depr_tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_files.py -------------------------------------------------------------------------------- /ui/depr_tests/test_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_handlers.py -------------------------------------------------------------------------------- /ui/depr_tests/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_input.py -------------------------------------------------------------------------------- /ui/depr_tests/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/depr_tests/test_interface.py -------------------------------------------------------------------------------- /ui/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/lib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/api.py -------------------------------------------------------------------------------- /ui/lib/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/components/__init__.py -------------------------------------------------------------------------------- /ui/lib/components/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/components/input.py -------------------------------------------------------------------------------- /ui/lib/components/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/components/model.py -------------------------------------------------------------------------------- /ui/lib/components/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/components/output.py -------------------------------------------------------------------------------- /ui/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/config.py -------------------------------------------------------------------------------- /ui/lib/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/files.py -------------------------------------------------------------------------------- /ui/lib/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/handlers.py -------------------------------------------------------------------------------- /ui/lib/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/ui/lib/interface.py -------------------------------------------------------------------------------- /web/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/favicon.svg -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/index.html -------------------------------------------------------------------------------- /web/siriwave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/siriwave.js -------------------------------------------------------------------------------- /web/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/App.js -------------------------------------------------------------------------------- /web/src/components/PlayerControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/components/PlayerControls.js -------------------------------------------------------------------------------- /web/src/components/TextEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/components/TextEditor.js -------------------------------------------------------------------------------- /web/src/components/VoiceSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/components/VoiceSelector.js -------------------------------------------------------------------------------- /web/src/components/WaveVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/components/WaveVisualizer.js -------------------------------------------------------------------------------- /web/src/services/AudioService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/services/AudioService.js -------------------------------------------------------------------------------- /web/src/services/VoiceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/services/VoiceService.js -------------------------------------------------------------------------------- /web/src/state/PlayerState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/src/state/PlayerState.js -------------------------------------------------------------------------------- /web/styles/badges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/badges.css -------------------------------------------------------------------------------- /web/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/base.css -------------------------------------------------------------------------------- /web/styles/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/controls.css -------------------------------------------------------------------------------- /web/styles/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/forms.css -------------------------------------------------------------------------------- /web/styles/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/header.css -------------------------------------------------------------------------------- /web/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/layout.css -------------------------------------------------------------------------------- /web/styles/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/player.css -------------------------------------------------------------------------------- /web/styles/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remsky/Kokoro-FastAPI/HEAD/web/styles/responsive.css --------------------------------------------------------------------------------