# Instrument LangChain

{% hint style="warning" %}
**Private preview.** This surface is not yet generally available. Adapters live in the Python SDK today and the rendering / configuration UX is under iteration. Contact <support@layerlens.ai> to request access to the private preview.
{% endhint %}

Canonical sample: [`samples/integrations/langchain_instrumented.py`](https://github.com/layerlens/stratix-python/blob/main/samples/integrations/langchain_instrumented.py) — auto-capture LangChain LCEL chain execution with `LangChainCallbackHandler`. Drop-in: no manual trace upload needed.

## Quick wire-up

```bash
pip install 'layerlens[providers-openai]' # plus your LangChain extras
```

```python
from layerlens import Stratix
from layerlens.instrument.adapters.frameworks.langchain import LangChainCallbackHandler

client = Stratix()
handler = LangChainCallbackHandler(client)
chain.invoke(input, config={"callbacks": [handler]})
```

The handler emits `model.invoke`, `cost.record`, and `tool.call` events to the configured HTTP sink.

## See also

* [SDK sample: `langchain_instrumented.py`](https://github.com/layerlens/stratix-python/blob/main/samples/integrations/langchain_instrumented.py)
* [SDK adapter doc: LangChain](https://github.com/layerlens/stratix-python/blob/main/docs/adapters/frameworks-langchain.md)
* [Integrations](/6.-build-wire-your-code/migration.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.layerlens.ai/6.-build-wire-your-code/instrument-langchain.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
