ConceptNet API is now live β€” free pilot access for developers

#2
by conceptnetUk - opened

Hi everyone πŸ‘‹πŸΏ

Following the independent evaluation this week β€” thank you again @john6666 β€” the API is now live and open for pilot integrations.

What's available today:

The model is callable directly via the HF Inference API:

python
import requests

response = requests.post(
"https://api-inference.huggingface.co/models/conceptnetUk/intent-classifier",
headers={"Authorization": "Bearer YOUR_TOKEN"},
json={"inputs": "Send the report when the contract is signed"}
)
print(response.json())

[{"label": "Context-Aware", "score": 0.9734}, ...]

What it classifies:

L1 Basic β€” "Do X" β€” immediate execution
L2 Context-Aware β€” "Do X when Y" β€” conditional trigger
L3 Predictive β€” "Do X before Y" β€” proactive scheduling
L4 Autonomous β€” "Do X always" β€” persistent agent

Looking for:

Developers building enterprise workflow automation
Anyone working on voice AI, agent frameworks, or NLP pipelines
Enterprise teams wanting to classify voice commands without an LLM

Free pilot access:
DM me or email tonymomoh@icloud.com β€” I'll send you a token within 24 hours.

Works in 9 languages. 100% accuracy on standard test set. 99.3% on adversarial holdout.

Happy to answer any technical questions below πŸ‘‡πŸΏ

Sign up or log in to comment