Loading...
Loading...
Add LangWatch tracing and observability to your code. Use for both onboarding (instrument an entire codebase) and targeted operations (add tracing to a specific function or module). Supports Python and TypeScript with all major frameworks.
npx skill4agent add langwatch/skills tracing.envLANGWATCH_API_KEY=your-key-herefetch_langwatch_docspip install langwatch
# or: uv add langwatchnpm install langwatch
# or: pnpm add langwatchimport langwatch
langwatch.setup()
@langwatch.trace()
def my_function():
# your existing code
passimport { LangWatch } from "langwatch";
const langwatch = new LangWatch();langwatch.setup()platform_