All skills
Skillintermediate

Langtrace AI

Claude Code Knowledge Pack7/10/2026

Overview

Langtrace AI

Monitor, evaluate & improve your LLM apps

Pre-Requisites

Make an account on Langtrace AI

Quick Start

Use just 2 lines of code, to instantly log your responses across all providers with langtrace

litellm.callbacks = ["langtrace"]
langtrace.init()

from langtrace_python_sdk import langtrace

# Langtrace API Keys
os.environ["LANGTRACE_API_KEY"] = "<your-api-key>"

# LLM API Keys
os.environ['OPENAI_API_KEY']="<openai-api-key>"

# set langtrace as a callback, litellm will send the data to langtrace
litellm.callbacks = ["langtrace"]

#  init langtrace
langtrace.init()

# openai call
response = completion(
    model="gpt-4o",
    messages=[
        {"content": "respond only in Yoda speak.", "role": "system"},
        {"content": "Hello, how are you?", "role": "user"},
    ],
)
print(response)

Using with LiteLLM Proxy

model_list:
  - model_name: gpt-4
    litellm_params:
      model: openai/fake
      api_key: fake-key
      api_base: https://exampleopenaiendpoint-production.up.railway.app/

litellm_settings:
  callbacks: ["langtrace"]

environment_variables:
  LANGTRACE_API_KEY: "141a****"