Run agents in dedicated, persistent sandboxes.
A REST API for long-form, agent-driven workflows. Per-tenant workspace, scoped file access, streaming responses, persistent memory across sessions.
export POKEE_API="https://your-tenant.enterprise.pokee.ai"
export POKEE_KEY="pk_<tenant>_<token>"
SID=$(curl -s -X POST "$POKEE_API/v1/sessions" \
-H "Authorization: Bearer $POKEE_KEY" \
-H "Content-Type: application/json" \
-d '{}' | jq -r '.id')
curl -N -X POST "$POKEE_API/v1/sessions/$SID/messages" \
-H "Authorization: Bearer $POKEE_KEY" \
-H "Content-Type: application/json" \
-d '{"message":"Summarize NVIDIA in two sentences."}'