We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d8082c commit 9497560Copy full SHA for 9497560
1 file changed
langfuse/client.py
@@ -289,7 +289,7 @@ def __init__(
289
290
self.httpx_client = httpx_client or httpx.Client(timeout=timeout)
291
292
- self.client = FernLangfuse(
+ public_api_client = FernLangfuse(
293
base_url=self.base_url,
294
username=public_key,
295
password=secret_key,
@@ -300,6 +300,9 @@ def __init__(
300
timeout=timeout,
301
)
302
303
+ self.api = public_api_client
304
+ self.client = public_api_client # legacy, to be removed in next major release
305
+
306
langfuse_client = LangfuseClient(
307
public_key=public_key,
308
secret_key=secret_key,
0 commit comments