From 9707fd3a341621de650a75caa6e26795ce3f59b0 Mon Sep 17 00:00:00 2001 From: Adam Nolte Date: Wed, 25 Jun 2025 13:23:08 -0500 Subject: [PATCH] Fix typo --- autoblocks/_impl/config/constants.py | 2 +- autoblocks/_impl/util.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoblocks/_impl/config/constants.py b/autoblocks/_impl/config/constants.py index b6d83d96..9214ebc8 100644 --- a/autoblocks/_impl/config/constants.py +++ b/autoblocks/_impl/config/constants.py @@ -1,7 +1,7 @@ from autoblocks._impl.util import AutoblocksEnvVar API_ENDPOINT = "https://api.autoblocks.ai" -API_ENDPOINT_V2 = AutoblocksEnvVar.V2_API_ENDPOINT_V2.get() or "https://api-v2.autoblocks.ai" +API_ENDPOINT_V2 = AutoblocksEnvVar.V2_API_ENDPOINT.get() or "https://api-v2.autoblocks.ai" INGESTION_ENDPOINT = "https://ingest-event.autoblocks.ai" REVISION_LATEST = "latest" REVISION_UNDEPLOYED = "undeployed" diff --git a/autoblocks/_impl/util.py b/autoblocks/_impl/util.py index 8c69f782..69d6fc6b 100644 --- a/autoblocks/_impl/util.py +++ b/autoblocks/_impl/util.py @@ -76,7 +76,7 @@ class AutoblocksEnvVar(StrEnum): ALIGN_TEST_EXTERNAL_ID = "AUTOBLOCKS_ALIGN_TEST_EXTERNAL_ID" API_KEY = "AUTOBLOCKS_API_KEY" V2_API_KEY = "AUTOBLOCKS_V2_API_KEY" - V2_API_ENDPOINT_V2 = "AUTOBLOCKS_V2_API_ENDPOINT" + V2_API_ENDPOINT = "AUTOBLOCKS_V2_API_ENDPOINT" CLI_SERVER_ADDRESS = "AUTOBLOCKS_CLI_SERVER_ADDRESS" INGESTION_KEY = "AUTOBLOCKS_INGESTION_KEY" FILTERS_TEST_SUITES = "AUTOBLOCKS_FILTERS_TEST_SUITES"