We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad12c3e commit 8b39020Copy full SHA for 8b39020
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "tensorlake"
3
-version = "0.1.56"
+version = "0.1.57"
4
description = "Tensorlake SDK for Document Ingestion API and Serverless Workflows"
5
authors = ["Tensorlake Inc. <[email protected]>"]
6
homepage = "https://github.com/tensorlakeai/tensorlake"
src/tensorlake/cli/_common.py
@@ -32,7 +32,7 @@ def client(self) -> httpx.Client:
32
"API key is not configured properly. The INDEXIFY_URL environment variable is required."
33
)
34
35
- base_url = os.getenv("TENSORLAKE_SERVER_URL", "https://api.tensorlake.ai")
+ base_url = os.getenv("INDEXIFY_URL", "https://api.tensorlake.ai")
36
37
self._client = httpx.Client(
38
base_url=base_url,
0 commit comments