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")