LangFuse
-
Techradar
Archived
-
Recommendation
Do not adopt
NOTE: This page is for reference only. Due to the licence changes of LangFuse it cannot be used.
Overview
Langfuse is an open-source LLM engineering platform that helps teams collaboratively debug, analyze, and iterate on their LLM applications.
Features
Traces
A trace typically represents a single request or operation. It contains the overall input and output of the function, as well as metadata about the request, such as the user, the session, and tags.
Each trace can contain multiple observations to log the individual steps of the execution.
Observations are of different types:
Eventsare the basic building blocks. They are used to track discrete events in a trace.Spansrepresent durations of units of work in a trace.Generationsare spans used to log generations of AI models. They contain additional attributes about the model, the prompt, and the completion. For generations, token usage and costs are automatically calculated.
Sessions
User interactions with LLMs have the potential to span multiple traces. Langfuse provides sessions as a way to group these traces together and see a simple session replay of the entire interaction.
Implementing sessions in Langfuse / Langchain is straightforward:
-
A unique identifier is needed and will be used as a
session_id. The UUID library can be used for this and implemented as follows: -
The
session_idcan then be added to the Langfuse callback handler: -
Ensure the Langfuse callback handler is being used by the Langchain chain.invoke function:
-
In the Langfuse Dashboard → Tracing → Sessions section a list of
sessionswill be displayed: -
Selecting a
sessionin the list enables you to drill down into the various inputs, context, meta data, content and outputs for each query:Example Code: Repo
Related Docs: Docs
Tags
Tags enable categorization and filtering of traces.
Implementation requires an additional tags field to be added to the Langfuse callback handler function.
The tags are then displayed in Traces list in the Langfuse dashboard:
They are also displayed in the Trace details screen:
You can also filter dashboard data by tags:




