- Add /dashboard/settings with SDK connection details, data stats, purge - Add DELETE /api/traces/[id] with cascade deletion - Add Anthropic integration (wrap_anthropic) for Python SDK - Fix missing root duration (totalDuration -> durationMs mapping) - Fix truncated JSON in decision tree nodes (extract readable labels) - Fix hardcoded 128K maxTokens in token gauge (model-aware context windows) - Enable Settings nav item in sidebar
9 lines
263 B
Python
9 lines
263 B
Python
"""Integration packages for AgentLens.
|
|
|
|
Available integrations:
|
|
|
|
- ``openai``: Wrap OpenAI clients with ``wrap_openai(client)``.
|
|
- ``anthropic``: Wrap Anthropic clients with ``wrap_anthropic(client)``.
|
|
- ``langchain``: LangChain callback handler for tracing.
|
|
"""
|