One Platform, Multiple Specialized Models
Unified API serving multiple model families: efficient classification, custom LLM chat, and specialized predictors.
Task: Classification
Specialty: Ultra-efficient sentiment analysis and text classification
Models:
constantsense-v1 - 413K params, 91.51% accuracyBest For: High-throughput classification, mobile deployment, cost-sensitive applications
Task: Chat & Text Generation
Specialty: Custom LLM trained on proprietary architecture
Models:
constant-v1 - Full LLM for chat and completionconstant-mini - Faster, smaller variantBest For: Conversational AI, content generation, custom language tasks
┌─────────────────────────────────────────────┐
│ Project Chimera Platform │
├─────────────────────────────────────────────┤
│ Unified API │ Auth │ Billing │ Logs │
├─────────────────────────────────────────────┤
│ │
│ Model Router (by task/family) │
│ │
├──────────────┬──────────────┬───────────────┤
│ │ │ │
│ ConstantSense│ Constant │ Future │
│ Handler │ LLM Handler│ Handlers │
│ │ │ │
│ • Classify │ • Chat │ • Embeddings │
│ │ • Complete │ • Time-series │
│ │ │ • Custom │
└──────────────┴──────────────┴───────────────┘
Single endpoint for all models. Switch models without changing code.
Use ConstantSense for classification, Constant for chat. Best tool for each job.
Pay only for what you use. Smaller models = lower costs.
Custom models, custom framework. No dependency on third-party APIs.
curl -X POST https://api.chimera.constantsolutions.ai/classify \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model": "constantsense-v1",
"text": "This product is amazing!"
}'
# Response:
{
"request_id": "req_abc123",
"model": "constantsense-v1",
"prediction": 1,
"prediction_label": "positive",
"confidence": 0.9543,
"processing_time_ms": 42,
"tokens_used": 8
}
curl -X POST https://api.chimera.constantsolutions.ai/chat \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model": "constant-v1",
"messages": [
{"role": "user", "content": "Explain AI in simple terms"}
],
"max_tokens": 500
}'
# Response:
{
"request_id": "req_xyz789",
"model": "constant-v1",
"message": {
"role": "assistant",
"content": "AI is like teaching a computer..."
},
"finish_reason": "stop",
"tokens_used": 85
}
| Model | Family | Tasks | Params | Status |
|---|---|---|---|---|
constantsense-v1 |
ConstantSense | Classification | 413K | Preview |
constant-v1 |
Constant | Chat, Completion | 1M | Preview |
constant-mini |
Constant | Chat, Completion | 250K | Preview |
No wrappers. No third-party dependencies.
Every model in Chimera is custom-built. We don't wrap OpenAI. We don't wrap Anthropic. We build from scratch using our own frameworks and architectures.
This means: