# 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 %}

Wrap your chain with a Stratix callback. See the [cookbook recipe](/6.-build-wire-your-code/instrument-langchain.md).

```python
from layerlens import Stratix
from langchain_core.callbacks import BaseCallbackHandler

client = Stratix()

class StratixCallback(BaseCallbackHandler):
 def on_chain_end(self, outputs, **kwargs):
 client.traces.create(...)

chain.invoke(input, config={"callbacks": [StratixCallback()]})
```

## See also

* [Cookbook: instrument LangChain](/6.-build-wire-your-code/instrument-langchain.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/10.-integrate-connect-your-stack/framework-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.
