From f0b6f5f5a55fb6e6a2b5e4c493977f28d700386b Mon Sep 17 00:00:00 2001 From: Cullen Taylor Date: Wed, 20 May 2026 17:46:45 -0400 Subject: [PATCH] fix: update tests/e2e noteabooks api hostname api now lives under the app. hostname. This will resolve that. Signed-off-by: Cullen Taylor --- .github/workflows/integration.yaml | 2 +- scripts/run_e2e_notebooks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index e24aa3341..347733f6d 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -68,7 +68,7 @@ jobs: NOTEBOOK_RUNNER_DEFAULT_MODEL: ${{ secrets.NOTEBOOK_RUNNER_DEFAULT_PROJECT_ID }} NOTEBOOK_RUNNER_API_KEY: ${{ secrets.NOTEBOOK_RUNNER_API_KEY }} NOTEBOOK_RUNNER_API_SECRET: ${{ secrets.NOTEBOOK_RUNNER_API_SECRET }} - NOTEBOOK_RUNNER_API_HOST: 'https://api.dev.vm.validmind.ai/api/v1/tracking' + NOTEBOOK_RUNNER_API_HOST: 'https://app.dev.vm.validmind.ai/api/v1/tracking' VALIDMIND_LLM_DESCRIPTIONS_ENABLED: 0 - name: Failure Notification diff --git a/scripts/run_e2e_notebooks.py b/scripts/run_e2e_notebooks.py index 33fe667c5..1148e2955 100644 --- a/scripts/run_e2e_notebooks.py +++ b/scripts/run_e2e_notebooks.py @@ -213,7 +213,7 @@ def run_notebook(notebook_path, kernel_name, log_output=False, progress_bar=True def update_vm_init_cell(notebook_path, model, pii_detection_mode="disabled"): api_host = os.getenv( - "NOTEBOOK_RUNNER_API_HOST", "https://api.dev.vm.validmind.ai/api/v1/tracking" + "NOTEBOOK_RUNNER_API_HOST", "https://app.dev.vm.validmind.ai/api/v1/tracking" ) api_key = os.getenv("NOTEBOOK_RUNNER_API_KEY") api_secret = os.getenv("NOTEBOOK_RUNNER_API_SECRET")