§ 01 · YOUR AGENT

Two lines turn any agent into an audit-ready agent.

The highlighted lines below are everything you write. Click Start agent to run this code and watch it land on the Cyris canvas →

triage_agent.pypython
import anthropic
import cyris
cyris.init(api_key="cyr_live_a8f3...")
client = anthropic.Anthropic()
def triage(symptoms):
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=512,
messages=[{
"role": "user",
"content": f"Triage: {symptoms}",
}],
)
return response.content[0].text
# run it on a few patients
for case in patient_queue:
triage(case.symptoms)
Wire your own agent →
CANVAS · cyrisai.dev/dashboard
Waiting
NO AGENTS YET

Click Start agent on the left and your code will land here, fully tracked.