Continual Platform

Get started

  1. Create a key on the API Keys page and copy the one-time secret.
  2. Create an entity and send it a message — the example below. It remembers; you never resend history.
  3. Read the Docs for how entity memory works and the API Reference for every endpoint.
BASE=https://platform.continualmi.com/v1

# Create an entity once; its memory lives here.
ENTITY=$(curl -s $BASE/entities \
  -H "Authorization: Bearer $CONTINUAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "mgpt-1-27b", "instructions": "You are Ada." }' | jq -r .entity_id)

# Then send only the new message, streamed back.
curl -N $BASE/entities/$ENTITY/messages \
  -H "Authorization: Bearer $CONTINUAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "content": "Say hello in one sentence." }'

Explore