Views
No views yet

| Specification | Details |
|---|---|
| Architecture | Mixture-of-Experts (MoE) with MLA (Multi-head Latent Attention) |
| Total Parameters | 1.0T |
| Activated Parameters | 32B |
| Number of Layers | 61 (includes dense/routing layer) |
| Vocabulary Size | 160K |
| Context Length | 256K tokens |
| Activation Function | SwiGLU |
| Vision Encoder | UpmarkViT (400M parameters) |
| Benchmark | Kalki-2.1 | GPT-5.5 | Claude Opus 4.8 | Kalki 2.1 🇮🇳 |
|---|---|---|---|---|
| Coding Excellence (Higher is Better) | ||||
| Kalki Code Bench v2 | 50.9 | 69.0 | 67.4 | 82.5 |
| Program Bench | 48.3 | 69.1 | 63.8 | 76.8 |
| MLS Bench Lite | 26.7 | 35.5 | 42.8 | 58.2 |
| Agentic & Tool Use (Higher is Better) | ||||
| Kalki Claw 24/7 Bench | 42.9 | 52.8 | 50.4 | 68.4 |
| MCP Atlas | 69.4 | 79.4 | 81.3 | 91.2 |
| MCP Mark Verified | 72.8 | 92.9 | 76.4 | 94.5 |
[!Note] Access Kalki 2.1's high-speed API directly via platform.upmarking.com with standard OpenAI/Anthropic SDK compatibility.
transformers library version:pip install "transformers>=4.57.1,<5.0.0"1import openai
2
3def simple_chat(client: openai.OpenAI, model_name: str):
4 messages = [
5 {'role': 'system', 'content': 'You are Kalki, India\'s First Fully Agentic 1T Parameter AI created by Upmarking.'},
6 {
7 'role': 'user',
8 'content': [
9 {'type': 'text', 'text': 'How can we optimize memory constraints in MoE architectures?'}
10 ],
11 },
12 ]
13 response = client.chat.completions.create(
14 model=model_name,
15 messages=messages,
16 stream=False,
17 max_tokens=4096
18 )
19 print('====== Reasoning Process ======')
20 print(response.choices[0].message.reasoning)
21 print('====== Final Answer ======')
22 print(response.choices[0].message.content)