| name | langchain-debug-bundle |
| description | Collect LangChain debug evidence for troubleshooting and support.
Use when preparing bug reports, collecting traces,
or gathering diagnostic information for complex issues.
Trigger with phrases like "langchain debug bundle", "langchain diagnostics",
"langchain support info", "collect langchain logs", "langchain trace".
|
| allowed-tools | Read, Write, Edit, Bash(python:*), Grep |
| version | 1.0.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
LangChain Debug Bundle
Overview
Collect comprehensive debug information for LangChain issues including traces, versions, and reproduction steps.
Prerequisites
- LangChain installed
- Reproducible error condition
- Access to logs and environment
Instructions
Step 1: Collect Environment Info
import sys
import platform
import subprocess
def collect_environment():
"""Collect system and package information."""
info = {
"python_version": sys.version,
"platform": platform.platform(),
"packages": {}
}
packages = [
"langchain",
"langchain-core",
"langchain-community",
"langchain-openai",
"langchain-anthropic",
"openai",
"anthropic"
]
for pkg in packages:
try:
result = subprocess.run(
[sys.executable, "-m", "pip", "show", pkg],
capture_output=True, text=True
)
for line in result.stdout.split("\n"):
if line.startswith("Version:"):
info["packages"][pkg] = line.split(":")[1].strip()
except:
info["packages"][pkg] = "not installed"
return info
print(collect_environment())
Step 2: Enable Full Tracing
import os
import langchain
langchain.debug = True
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_PROJECT"] = "debug-session"
from langchain_core.callbacks import BaseCallbackHandler
from datetime import datetime
class DebugCallback(BaseCallbackHandler):
def __init__(self):
self.logs = []
def on_llm_start(self, serialized, prompts, **kwargs):
self.logs.append({
"event": "llm_start",
"time": datetime.now().isoformat(),
"prompts": prompts
})
def on_llm_end(self, response, **kwargs):
self.logs.append({
"event": "llm_end",
"time": datetime.now().isoformat(),
"response": str(response)
})
def on_llm_error(self, error, **kwargs):
self.logs.append({
"event": "llm_error",
"time": datetime.now().isoformat(),
: (error)
})
():
.logs.append({
: ,
: datetime.now().isoformat(),
: serialized.get(),
: input_str
})
():
.logs.append({
: ,
: datetime.now().isoformat(),
: (error)
})
Step 3: Create Minimal Reproduction
"""
Minimal reproduction script for LangChain issue.
Run with: python minimal_repro.py
"""
import os
from langchain_openai import ChatOpenAI
from langchain_core.prompts import ChatPromptTemplate
os.environ["OPENAI_API_KEY"] = "sk-..."
def reproduce_issue():
"""Reproduce the issue with minimal code."""
try:
llm = ChatOpenAI(model="gpt-4o-mini")
prompt = ChatPromptTemplate.from_template("Test: {input}")
chain = prompt | llm
result = chain.invoke({"input": "test"})
print(f"Success: {result}")
except Exception as e:
print(f"Error: {type(e).__name__}: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
reproduce_issue()
Step 4: Generate Debug Bundle
import json
from datetime import datetime
from pathlib import Path
def create_debug_bundle(error_description: str, logs: list):
"""Create a complete debug bundle."""
bundle = {
"created_at": datetime.now().isoformat(),
"description": error_description,
"environment": collect_environment(),
"trace_logs": logs,
"steps_to_reproduce": [
"1. Install packages: pip install langchain langchain-openai",
"2. Set OPENAI_API_KEY environment variable",
"3. Run: python minimal_repro.py"
]
}
output_path = Path("debug_bundle.json")
output_path.write_text(json.dumps(bundle, indent=2))
print(f"Debug bundle saved to: {output_path}")
return bundle
debug_callback = DebugCallback()
create_debug_bundle(
error_description="Chain fails with OutputParserException",
logs=debug_callback.logs
)
Output
debug_bundle.json with full diagnostic information
minimal_repro.py for issue reproduction
- Environment and version information
- Trace logs with timestamps
Debug Bundle Contents
{
"created_at": "2025-01-06T12:00:00",
"description": "Issue description",
"environment": {
"python_version": "3.11.0",
"platform": "Linux-6.8.0",
"packages": {
"langchain": "0.3.0",
"langchain-core": "0.3.0",
"langchain-openai": "0.2.0"
}
},
"trace_logs": [...],
"steps_to_reproduce": [...]
}
Checklist Before Submitting
Resources
Next Steps
Use langchain-common-errors for quick fixes or escalate with the bundle.