Quickstart
Get TuringPulse running in 5 minutes.
1. Install the SDK
pip install turingpulse2. Get Your API Key
- Sign up at app.turingpulse.ai
- Go to Settings → API Keys
- 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.