Skip to main content
You can also check out our full working example of a RAG pipeline with Pinecone here.
1

Install the SDK

Want our AI to do it for you? Click here
Run the following command in your terminal:
pip install traceloop-sdk
In your LLM app, initialize the Traceloop tracer like this:
from traceloop.sdk import Traceloop

Traceloop.init()
If you’re running this locally, you may want to disable batch sending, so you can see the traces immediately:
Traceloop.init(disable_batch=True)
2

Annotate your workflows