Set up tracing
Set up LLM tracing with tracely.
Installation and Imports
!pip install tracely from tracely import init_tracing
from tracely import trace_eventInitialize tracing
init_tracing(
address="https://app.evidently.cloud/",
api_key=”YOUR_EVIDENTLY_TOKEN”,
project_id="YOUR_PROJECT_ID",
export_name="YOUR_TRACING_DATASET_NAME",
)Tracing parameters
Tracing a function
Last updated