From 8fa4beb3b32d87fa7a8c9f47f9daa050ba0b41ee Mon Sep 17 00:00:00 2001 From: Zishan Date: Tue, 18 Feb 2025 16:18:44 +0100 Subject: [PATCH] remove -it from run.sh --- proxy/routes/anthropic.py | 2 +- run.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy/routes/anthropic.py b/proxy/routes/anthropic.py index 3d86bf7..fd0f0fa 100644 --- a/proxy/routes/anthropic.py +++ b/proxy/routes/anthropic.py @@ -15,7 +15,7 @@ proxy = APIRouter() ALLOWED_ANTHROPIC_ENDPOINTS = {"v1/messages"} MISSING_INVARIANT_AUTH_API_KEY = "Missing invariant authorization header" -MISSING_ANTHROPIC_AUTH_HEADER = "Missing anthropic authorization header" +MISSING_ANTHROPIC_AUTH_HEADER = "Missing Anthropic authorization header" NOT_SUPPORTED_ENDPOINT = "Not supported Anthropic endpoint" FAILED_TO_PUSH_TRACE = "Failed to push trace to the dataset: " END_REASONS = ["end_turn", "max_tokens", "stop_sequence"] diff --git a/run.sh b/run.sh index fd6c075..6561b48 100755 --- a/run.sh +++ b/run.sh @@ -65,7 +65,6 @@ tests() { docker build -t 'explorer-proxy-tests' -f ./tests/Dockerfile.test ./tests docker run \ - -it \ --mount type=bind,source=./tests,target=/tests \ --network invariant-proxy-web-test \ -e OPENAI_API_KEY="$OPENAI_API_KEY" \