forked from remsky/Kokoro-FastAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (95 loc) · 2.3 KB
/
Copy path.gitignore
File metadata and controls
107 lines (95 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Version control
.git
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
*.py[cod]
*$py.class
.Python
.pytest_cache
.coverage
.coveragerc
# Python package build artifacts
*.egg-info/
*.egg
dist/
build/
*.onnx
*.pth
# Environment
# .env
.venv/
node_modules/
env/
venv/
ENV/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Project specific
# Model files
*.pth
*.tar*
api/src/models/**/*.download
# Other project files
.env
.claude/*
!.claude/skills/
.claude/skills/*
!.claude/skills/api-contrib/
!.claude/skills/web-contrib/
!.claude/skills/readme-benchmarks/
!.claude/skills/integration-tests/
.agents/*
Kokoro-82M/
EXTERNAL_UV_DOCUMENTATION*
app
api/temp_files/
# Docker
# Dockerfile*
examples/ebook_test/chapter_to_audio.py
examples/ebook_test/chapters_to_audio.py
examples/ebook_test/parse_epub.py
api/src/voices/af_jadzia.pt
examples/assorted_checks/test_combinations/output/*
examples/assorted_checks/test_openai/output/*
examples/assorted_checks/test_dialogue/output/*
# Audio files
examples/*.wav
examples/*.pcm
examples/*.mp3
examples/*.flac
examples/*.acc
examples/*.ogg
examples/speech.mp3
examples/phoneme_examples/output/*.wav
examples/assorted_checks/benchmarks/output_audio/*
examples/assorted_checks/benchmarks/output_audio_stream/*
examples/assorted_checks/benchmarks/output_audio_stream_openai/*
examples/assorted_checks/test_transcription/output/*.wav
examples/assorted_checks/test_transcription/output_long_form/*.log
examples/assorted_checks/test_transcription/output_long_form/*.transcript.txt
examples/assorted_checks/test_transcription/output_long_form/*.wav
examples/assorted_checks/test_transcription/output_long_form/*.synth_meta.json
examples/assorted_checks/test_transcription/output_multilingual/*.wav
examples/assorted_checks/benchmarks/output_data/model_unload_stats.txt
examples/assorted_checks/benchmarks/output_data/model_unload_results.json
examples/assorted_checks/benchmarks/output_plots/model_unload_longform.png
examples/assorted_checks/benchmarks/output_plots/model_unload_short.png
examples/uv.lock
# Mac MPS virtualenv for dual testing
.venv-mps
examples/assorted_checks/test_transcription/*/*.wav
pyproject.toml.bkp
# Local scratch notes, scan outputs, anything not meant to ship
.local/
examples/assorted_checks/test_silence/out/*
playwright-report/
test-results/
ROCM_TRIM.md
Kokoro-FastAPI.code-workspace
experiments/*