Docs

Get up and running with the API in 5 minutes.

1. Build a model

Open the home page, type what you want to classify, click Build.

2. Get an API key

On the Deploy tab of any built model, click Get API key.

3. Call the API

curl -X POST https://api.createllm.com/v1/predict/PROJECT_ID \
  -H "Authorization: Bearer sslm_live_XXX" \
  -H "Content-Type: application/json" \
  -d '{"text": "my card was charged twice"}'

# {
#   "intent": "billing",
#   "confidence": 0.96,
#   "matched_terms": ["charged"],
#   "applied_rule": false,
#   "latency_ms": 0.7,
#   "model_version_id": "abc",
#   "dictionary_version_id": "def"
# }

4. Iterate

Open the project workspace, edit the dictionary (instant), or add examples and click Retrain. Every change creates a new version. Promote when ready.