Re-exported from
fiddler_otel.attributes.set_conversation_id.Parameters
Unique identifier for the conversation session.
Returns
None Example: default import uuid from fiddler_otel import set_conversation_id set_conversation_id(str(uuid.uuid4())) # All spans created in this thread or coroutine after this call # carry the same conversation_id, until set_conversation_id is # called again with a new value.
See the canonical reference for the full description and examples.