You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Categorized map of every runnable file in this repo. Use this when you
want "one example for framework X" without scrolling the README. The
top-level README links here for the demos and probes tables.
Basic — one per vendor / framework (≤ 80 lines each)
File
Vendor
What it shows
raw_openai_basic.py
OpenAI
@protect + @guarded on a single LLM call
anthropic_basic.py
Anthropic
@protect + @guarded on messages.create
mistral_basic.py
Mistral
@protect + @guarded on chat.complete
gemini_basic.py
Gemini
@protect + @guarded on models.generate_content
cohere_basic.py
Cohere
@protect + @guarded on client.chat (V2)
bedrock_basic.py
AWS Bedrock
@protect + manual track_llm (boto3 uses urllib3, not httpx)
langchain_basic.py
LangChain
Auto-instrumented ChatModel.invoke (not via LangGraph)
langgraph_basic.py
LangGraph
Auto-instrumented StateGraph (recommended)
langgraph_manual_wrapper.py
LangGraph
nullrun.toolbox.langgraph.wrapper for re-compiled graphs