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
10 changes: 5 additions & 5 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -382,11 +382,11 @@ configure_shell() {

{
echo "$begin_marker"
echo 'export ANTHROPIC_MODEL="claude-opus-4-6"'
echo 'export ANTHROPIC_DEFAULT_OPUS_MODEL="claude-opus-4-6"'
echo 'export ANTHROPIC_DEFAULT_SONNET_MODEL="claude-sonnet-4-6"'
echo 'export CLAUDE_CODE_EFFORT_LEVEL="high"'
echo 'export CLAUDE_CODE_DISABLE_AUTO_MEMORY=1'
echo 'export ANTHROPIC_MODEL="${ANTHROPIC_MODEL:-claude-opus-4-6}"'
echo 'export ANTHROPIC_DEFAULT_OPUS_MODEL="${ANTHROPIC_DEFAULT_OPUS_MODEL:-claude-opus-4-6}"'
echo 'export ANTHROPIC_DEFAULT_SONNET_MODEL="${ANTHROPIC_DEFAULT_SONNET_MODEL:-claude-sonnet-4-6}"'
echo 'export CLAUDE_CODE_EFFORT_LEVEL="${CLAUDE_CODE_EFFORT_LEVEL:-high}"'
echo 'export CLAUDE_CODE_DISABLE_AUTO_MEMORY="${CLAUDE_CODE_DISABLE_AUTO_MEMORY:-1}"'
Comment thread
stempeck marked this conversation as resolved.
echo "$end_marker"
} >> "$shell_config"
log_info "Updated model config in $shell_config"
Expand Down
Loading