Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ANTHROPIC_API_URL env. #3711

Merged
merged 1 commit into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ LARGE_NANOGPT_MODEL= # Default: gpt-4o

# Anthropic Configuration
ANTHROPIC_API_KEY= # For Claude
ANTHROPIC_API_URL=
SMALL_ANTHROPIC_MODEL= # Default: claude-3-haiku-20240307
MEDIUM_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
LARGE_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const models: Models = {
},
},
[ModelProviderName.ANTHROPIC]: {
endpoint: "https://api.anthropic.com/v1",
endpoint: settings.ANTHROPIC_API_URL || "https://api.anthropic.com/v1",
model: {
[ModelClass.SMALL]: {
name:
Expand Down Expand Up @@ -126,7 +126,7 @@ export const models: Models = {
},
},
[ModelProviderName.CLAUDE_VERTEX]: {
endpoint: "https://api.anthropic.com/v1", // TODO: check
endpoint: settings.ANTHROPIC_API_URL || "https://api.anthropic.com/v1", // TODO: check
model: {
[ModelClass.SMALL]: {
name: "claude-3-5-sonnet-20241022",
Expand Down
Loading