Observability & Tracing for Langchain (Python & JS/TS)
Langfuse Tracing integrates with Langchain using Langchain Callbacks (Python (opens in a new tab), JS (opens in a new tab)). Thereby, the Langfuse SDK automatically creates a nested trace for every run of your Langchain applications. This allows you to log, analyze and debug your LangChain application.
Add Langfuse to your Langchain Application
You can configure the integration via (1) constructor arguments or (2) environment variables. Get your Langfuse credentials from the Langfuse dashboard.
pip install langfuse
# Initialize Langfuse handler
from langfuse.callback import CallbackHandler
langfuse_handler = CallbackHandler(
secret_key="sk-lf-...",
public_key="pk-lf-...",
host="https://cloud.langfuse.com", # 🇪🇺 EU region
# host="https://us.cloud.langfuse.com", # 🇺🇸 US region
)
# Your Langchain code
# Add Langfuse handler as callback (classic and LCEL)
chain.invoke({"input": "<user_input>"}, config={"callbacks": [langfuse_handler]})
Also works for run
and predict
methods.
chain.run(input="<user_input>", callbacks=[langfuse_handler]) # Legacy
conversation.predict(input="<user_input>", callbacks=[langfuse_handler])
Done. Now you can explore detailed traces and metrics in the Langfuse dashboard.
Prefer end-to-end examples?
Supported LangChain interfaces
Feature/interface | Python | JS/TS |
---|---|---|
LCEL | ✅ | ✅ |
invoke() | ✅ | ✅ |
run() | ✅ | ✅ |
call() | ✅ | ✅ |
predict() | ✅ | ✅ |
async | ✅ | ✅ |
batch() | ✅ | (✅) |
streaming | ✅ | ✅ |
We are interested in your feedback! Raise an issue on GitHub to request support for additional interfaces.
Supported LangChain features
- 🕸️ LangGraph: Works with Langfuse Integration. Requires Python 3.11+ (GH issue (opens in a new tab)). See notebook for example integration.
- 🏓 LangServe: See notebook for example integration.
Additional Configuration
Optional constructor arguments
When initializing the Langfuse handler, you can pass the following optional arguments to use more advanced features.
Python | JS/TS | Type | Description |
---|---|---|---|
user_id | userId | string | The current user. |
session_id | sessionId | string | The current session. |
release | release | string | The release of your application. See experimentation docs for details. |
version | version | string | The version of your application. See experimentation docs for details. |
trace_name | string | Customize the name of the created traces. Defaults to name of chain. | |
enabled | enabled | boolean | Enable or disable the Langfuse integration. Defaults to true . |
sample_rate | - | float | Sample rate for tracing. |
Interoperability with Langfuse SDKs
Use the Langchain integration in combination with the regular Langfuse SDKs if you want to:
- Add non-Langchain related observations to the trace.
- Group multiple Langchain runs into a single trace.
Learn more about the structure of a trace here.
from langfuse.decorators import langfuse_context, observe
# Create a trace via Langfuse decorators and get a Langchain Callback handler for it
@observe() # automtically log function as a trace to Langfuse
def main():
# update trace attributes (e.g, name, session_id, user_id)
langfuse_context.update_current_trace(
name="custom-trace",
session_id="user-1234",
user_id="session-1234",
)
# get the langchain handler for the current trace
langfuse_handler = langfuse_context.get_current_langchain_handler()
# Your Langchain code
# Add Langfuse handler as callback (classic and LCEL)
chain.invoke({"input": "<user_input>"}, config={"callbacks": [langfuse_handler]})
main()
Limitation (decorator + langchain): The input/output of the Langchain code will not be added to the trace or span created by the decorator but to a child. Adding them would cause unwanted side-effects if they are set manually or if you add multiple Langchain runs.
If you pass these callback handlers to your Langchain code, the events will be nested under the respective trace or span in the Langfuse.
See the Langchain observability cookbook for an example of this in action (Python).
Queuing and flushing
The Langfuse SDKs queue and batch events in the background to reduce the number of network requests and improve overall performance. In a long-running application, this works without any additional configuration.
If you are running a short-lived application, you need to shutdown Langfuse to ensure that all events are flushed before the application exits.
langfuse_handler.shutdown()
If you want to flush events synchronously at a certain point, you can use the flush
method. This will wait for all events that are still in the background queue to be sent to the Langfuse API. This is usually discouraged in production environments.
langfuse_handler.flush()