Check if the current span is recording
True
False
from keywordsai_tracing import task, get_client @task(name="record_state") def record_state(): client = get_client() return client.is_recording() print(record_state())
Was this page helpful?