We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec5f178 commit 990bb75Copy full SHA for 990bb75
1 file changed
langfuse/_client/get_client.py
@@ -90,4 +90,8 @@ def get_client(*, public_key: Optional[str] = None) -> Langfuse:
90
tracing_enabled=False, public_key="fake", secret_key="fake"
91
)
92
93
- return Langfuse(public_key=public_key)
+ return Langfuse(
94
+ public_key=public_key,
95
+ secret_key=instance.secret_key,
96
+ host=instance.host,
97
+ )
0 commit comments