Skip to content

Commit

Permalink
update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
dfokina authored Apr 30, 2024
1 parent 8640cdf commit 53e4a51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class LangfuseConnector:
LangfuseConnector connects Haystack LLM framework with Langfuse in order to enable the tracing of operations
and data flow within various components of a pipeline.
Simply add this component to your pipeline, DO NOT connect it to any other component. The LangfuseConnector will
Simply add this component to your pipeline, but *do not* connect it to any other component. The LangfuseConnector will
automatically trace the operations and data flow within the pipeline.
Here is an example of how to use it:
Expand Down Expand Up @@ -57,7 +57,7 @@ def __init__(self, name: str, public: bool = False):
Langfuse dashboard.
:param public: Whether the tracing data should be public or private. If set to `True`, the tracing data will be
publicly accessible to anyone with the tracing URL. If set to `False`, the tracing data will be private and
only accessible to the Langfuse account owner. Default is `False`.
only accessible to the Langfuse account owner. The default is `False`.
"""
self.name = name
self.tracer = LangfuseTracer(tracer=Langfuse(), name=name, public=public)
Expand Down

0 comments on commit 53e4a51

Please sign in to comment.