diff --git a/.github/workflows/load_test.yml b/.github/workflows/load_test.yml index f809905d9..4fedfbb5a 100644 --- a/.github/workflows/load_test.yml +++ b/.github/workflows/load_test.yml @@ -22,7 +22,7 @@ jobs: uses: BerriAI/locust-github-action@master with: LOCUSTFILE: ".github/workflows/locustfile.py" - URL: "https://litellm-api.up.railway.app/" + URL: "https://litellm-database-docker-build-production.up.railway.app/" USERS: "100" RATE: "10" RUNTIME: "120s" diff --git a/.github/workflows/locustfile.py b/.github/workflows/locustfile.py index 3fafce676..9e5b62ff0 100644 --- a/.github/workflows/locustfile.py +++ b/.github/workflows/locustfile.py @@ -10,7 +10,7 @@ class MyUser(HttpUser): def chat_completion(self): headers = { "Content-Type": "application/json", - "Authorization": f"Bearer sk-Tbw10FmfaKMsFOD_KJ73tQ", + "Authorization": f"Bearer sk-gUvTeN9g0sgHBMf9HeCaqA", # Include any additional headers you may need for authentication, etc. }