Does Adrian work with LangChain and LangGraph? How do I add it? #69
-
|
I want to add Adrian to an existing LangChain / LangGraph agent — is it supported, and what's the setup? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Yes — the SDK auto-instruments LangChain / LangGraph. Install with Quickstart: https://docs.adrian.secureagentics.ai/quickstart · Example: https://github.com/secureagentics/Adrian/blob/main/examples/quickstart.py |
Beta Was this translation helpful? Give feedback.
Yes — the SDK auto-instruments LangChain / LangGraph. Install with
pip install adrian-sdk, install the LangChain provider for your model (e.g.langchain-openai), then bracket your existing agent code with two lines:adrian.init(api_key=...)andadrian.shutdown(). Events stream to the dashboard within seconds, classified by severity.Quickstart: https://docs.adrian.secureagentics.ai/quickstart · Example: https://github.com/secureagentics/Adrian/blob/main/examples/quickstart.py