Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion langfuse/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def __init__(

self.httpx_client = httpx_client or httpx.Client(timeout=timeout)

self.client = FernLangfuse(
public_api_client = FernLangfuse(
base_url=self.base_url,
username=public_key,
password=secret_key,
Expand All @@ -300,6 +300,9 @@ def __init__(
timeout=timeout,
)

self.api = public_api_client
self.client = public_api_client # legacy, to be removed in next major release

langfuse_client = LangfuseClient(
public_key=public_key,
secret_key=secret_key,
Expand Down
Loading