Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions home/core/claude-code.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ in
# 通常はモデルのバージョンは指定せずその時の最新を優先するのですが、
# opus-4.8があまりにも酷く、
# 統合失調症のように幻聴を聞き続けるので、
# 緊急回避としてopus-4.7を優先指定します。
# fableをデフォルトに、
Comment thread
ncaq marked this conversation as resolved.
# フォールバックの筆頭に緊急回避としてopus-4.7を指定します。
# 新しいモデルがリリースされたらまた考え直します。
model = "claude-opus-4-7";
model = "fable";
Comment thread
ncaq marked this conversation as resolved.
fallbackModel = [
"claude-opus-4-7"
"opus"
"sonnet"
];
Expand Down
Loading