Skip to content

Commit 8b39020

Browse files
authored
Fix client path that is used for auth etc. (#98)
Fix
1 parent ad12c3e commit 8b39020

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.56"
3+
version = "0.1.57"
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/cli/_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def client(self) -> httpx.Client:
3232
"API key is not configured properly. The INDEXIFY_URL environment variable is required."
3333
)
3434

35-
base_url = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")
35+
base_url = os.getenv("INDEXIFY_URL", "https://api.tensorlake.ai")
3636

3737
self._client = httpx.Client(
3838
base_url=base_url,

0 commit comments

Comments
 (0)