Skip to content

Commit ad12c3e

Browse files
authored
Fix variable because it's breaking integration (#97)
Revert variable name change to avoid breaking existing integrations. export INDEXIFY_URL="https://api.tensorlake.dev" Verified in dev: https://cloud.tensorlake.dev/organizations/org_PPrPm9Q7zbgCBbjhFRJ6j/projects/project_zQ7hpFKWkMtHbCkzRkCqd/documents/playground?jobId=job-mFFhCqbPkJGWwBPDjfBqD&documentId=tensorlake-kgCbgBHzTHmp9ghhDdGj8
1 parent 6e79c07 commit ad12c3e

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tensorlake"
3-
version = "0.1.55"
3+
version = "0.1.56"
44
description = "Tensorlake SDK for Document Ingestion API and Serverless Workflows"
55
authors = ["Tensorlake Inc. <[email protected]>"]
66
homepage = "https://github.com/tensorlakeai/tensorlake"

src/tensorlake/builder/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, build_service: str, api_key):
1717
@classmethod
1818
def from_env(cls):
1919
api_key = os.getenv("TENSORLAKE_API_KEY")
20-
server_url = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")
20+
server_url = os.getenv("INDEXIFY_URL", "https://api.tensorlake.ai")
2121
build_url = os.getenv(
2222
"TENSORLAKE_BUILD_SERVICE", f"{server_url}/images"
2323
) # Mainly used for debugging/local testing

src/tensorlake/cli/_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def client(self) -> httpx.Client:
2929
if self._client is None:
3030
if not self.api_key:
3131
raise click.UsageError(
32-
"API key is not configured properly. The TENSORLAKE_API_KEY environment variable is required."
32+
"API key is not configured properly. The INDEXIFY_URL environment variable is required."
3333
)
3434

3535
base_url = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")

src/tensorlake/documentai/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pydantic import BaseModel, Field
99

1010
# Get base URL from environment variable or use default
11-
_server_url = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")
11+
_server_url = os.getenv("INDEXIFY_URL", "https://api.tensorlake.ai")
1212
DOC_AI_BASE_URL = os.getenv("TENSORLAKE_DOCAI_URL", f"{_server_url}/documents/v1/")
1313

1414
T = TypeVar("T")

src/tensorlake/http_client.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,12 @@ def log_retries(e: BaseException, sleep_time: float, retries: int):
5858
class TensorlakeClient:
5959
def __init__(
6060
self,
61-
service_url: str = DEFAULT_SERVICE_URL,
61+
service_url: str = DEFAULT_SERVICE_URL, # service_url is already set from DEFAULT_SERVICE_URL, which reads from env var
6262
config_path: Optional[str] = None,
6363
namespace: str = "default",
6464
api_key: Optional[str] = None,
6565
**kwargs,
6666
):
67-
# service_url is already set from DEFAULT_SERVICE_URL, which reads from env var
6867

6968
self.service_url = service_url
7069
self._config_path = config_path

src/tensorlake/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import os
22

3-
DEFAULT_SERVICE_URL = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")
3+
DEFAULT_SERVICE_URL = os.getenv("INDEXIFY_URL", "https://api.tensorlake.ai")

0 commit comments

Comments
 (0)