45690371c3
Document the exact format for the KO+EN labeled clips that the bench gate needs (manifest.jsonl + ground-truth text + optional entities). Ignore audio/video under samples/** while keeping manifests tracked. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# ─── Python ───────────────────────────────────────────────
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# Virtual envs (keep uv.lock tracked)
|
|
.venv/
|
|
venv/
|
|
|
|
# Env / secrets (keep .env.example tracked)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Models / data / scratch
|
|
*.log
|
|
models/
|
|
samples/**/*.wav
|
|
samples/**/*.flac
|
|
samples/**/*.mp3
|
|
samples/**/*.m4a
|
|
samples/**/*.mp4
|
|
samples/**/*.mov
|
|
|
|
# ─── OS / editor ──────────────────────────────────────────
|
|
.DS_Store
|
|
*.swp
|
|
|
|
# ─── Claude Code (personal/local only) ────────────────────
|
|
.claude/settings.local.json
|
|
|
|
# ─── oh-my-claudecode ─────────────────────────────────────
|
|
# Keep shareable knowledge so teammates can ramp via omc:
|
|
# .omc/plans/ .omc/specs/ .omc/artifacts/ .omc/project-memory.json
|
|
# Ignore ephemeral, machine-/session-specific runtime state:
|
|
.omc/state/
|
|
.omc/sessions/
|
|
.omc/logs/
|