Quickstart

Get TuringPulse running in 5 minutes.

1. Install the SDK

pip install turingpulse

2. Get Your API Key

  1. Sign up at app.turingpulse.ai
  2. Go to Settings → API Keys
  3. Create a new API key

3. Initialize

from turingpulse import init

init(
    api_key="sk_live_your_api_key",
    project_id="my-project",
)

4. Instrument Your Agent

from turingpulse import instrument

@instrument(agent_id="my-agent")
def my_agent(query: str):
    return llm.chat(query)

# Run your agent
result = my_agent("Hello, world!")

5. View Traces

Open app.turingpulse.ai and navigate to Operations → Runs to see your traces.

Next Steps