Skip to content
Open
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
8 changes: 4 additions & 4 deletions dot-env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

# Anthropic (Optional)
ANTHROPIC_API_KEY=sk-ant-your-key-here
CLAUDE_MODEL=claude-sonnet-4-5-20250514
CLAUDE_MODEL=claude-sonnet-4-6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The model identifier claude-sonnet-4-6 appears to be a Google Vertex AI model name (configured as the default for VERTEX_MODEL in lib/config.js). Setting CLAUDE_MODEL (which is used for the direct Anthropic API provider) to claude-sonnet-4-6 will likely result in an API error because the direct Anthropic API expects standard Anthropic model identifiers (or the claude-sonnet-4-5-20250929 default defined in lib/config.js). Consider reverting this to a valid Anthropic model identifier or keeping it consistent with the default in lib/config.js.

CLAUDE_MODEL=claude-sonnet-4-5-20250514


#Google Vertex AI (optional)
LLM_PROVIDER=vertex
VERTEX_PROJECT_ID=your-gcp-project
VERTEX_REGION=global
#LLM_PROVIDER=vertex
#VERTEX_PROJECT_ID=your-gcp-project
#VERTEX_REGION=global


# Harper Fabric deployment (optional, only needed for deploy)
Expand Down