From 5e52b55ee9db7bcea52207237292858961575749 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 1 Aug 2026 14:20:25 +0400 Subject: [PATCH] chore: keep worktree model symlinks out of the tree The fix pass ran in git worktrees, which need models/ symlinked in from the main checkout to build. .gitignore covered the embedder and llm symlinks but not stt and tts, so those two were committed as absolute-path symlinks. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01TrVSBKe3RFDF4fGYKWYQnX --- .gitignore | 2 ++ models/stt | 1 - models/tts | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 120000 models/stt delete mode 120000 models/tts diff --git a/.gitignore b/.gitignore index 24c0922..8b29eb9 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,5 @@ coverage.out # Agent worktrees and local agent state .claude/ +/models/stt +/models/tts diff --git a/models/stt b/models/stt deleted file mode 120000 index b983fa3..0000000 --- a/models/stt +++ /dev/null @@ -1 +0,0 @@ -/home/kami/apps/Maven/models/stt \ No newline at end of file diff --git a/models/tts b/models/tts deleted file mode 120000 index 66782fb..0000000 --- a/models/tts +++ /dev/null @@ -1 +0,0 @@ -/home/kami/apps/Maven/models/tts \ No newline at end of file