Skip to content

Commit

Permalink
Change proxy URL (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankrgyl authored Jul 25, 2024
1 parent 3bf3246 commit b73db00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/oai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function extractOpenAIArgs<T extends Record<string, unknown>>(
};
}

const PROXY_URL = "https://braintrustproxy.com/v1";
const PROXY_URL = "https://api.braintrust.dev/v1/proxy";

export function buildOpenAIClient(options: OpenAIAuth): OpenAI {
const {
Expand Down
2 changes: 1 addition & 1 deletion py/autoevals/oai.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pathlib import Path
from typing import Any

PROXY_URL = "https://braintrustproxy.com/v1"
PROXY_URL = "https://api.braintrust.dev/v1/proxy"


@dataclass
Expand Down

0 comments on commit b73db00

Please sign in to comment.