You can enrich your prompt traces by providing data about the prompt’s version, specifying the prompt template or the variables:
Copy
Ask AI
Traceloop.set_prompt( "Tell me a joke about {subject}", {"subject": subject}, version=1)completion = client.chat.completions.create( model="gpt-3.5-turbo", messages=[{"role": "user", "content": f"Tell me a joke about {subject}"}],)