Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Set up the tracing client and environment configuration
import os from keywordsai_tracing import KeywordsAITelemetry os.environ["KEYWORDSAI_API_KEY"] = "your-api-key" os.environ["KEYWORDSAI_BASE_URL"] = "https://api.keywordsai.co/api" k_tl = KeywordsAITelemetry()
KEYWORDSAI_API_KEY
KEYWORDSAI_BASE_URL
https://api.keywordsai.co/api
from keywordsai_tracing.decorators import workflow, task @workflow(name="pipeline") def pipeline(): @task(name="step") def step(): return "ok" return step() print(pipeline())
Was this page helpful?