DOCUMENTATION
GITHUB
strivio-sdk →

Quickstart

Install the SDK

pip install strivio

Add to your LangChain agent

from strivio import StrivioCallbackHandler

strivio = StrivioCallbackHandler(
    api_url  = "https://your-strivio-url/api/v1",
    token    = "your-jwt-token",
    agent_id = "my-agent-v1",
)

agent = initialize_agent(
    tools, llm,
    callbacks = [strivio]  # done.
)

That's it. Every tool call, LLM decision, and data access is now risk-scored, firewall-enforced, and audit-logged in real time.