LaminarLiteLLMCallback is deprecated and does nothing. Remove it if you already use it.
3
Run your code and see traces in Laminar
Example code:
import osimport litellmfrom lmnr import LaminarLaminar.initialize(project_api_key=os.environ["LMNR_PROJECT_API_KEY"])response = litellm.completion( model="gpt-5-nano", messages=[ {"role": "user", "content": "What is the capital of France?"} ],)