Get up and running with the API in 5 minutes.
Open the home page, type what you want to classify, click Build.
On the Deploy tab of any built model, click Get API key.
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"
# }Open the project workspace, edit the dictionary (instant), or add examples and click Retrain. Every change creates a new version. Promote when ready.