File size: 1,080 Bytes
eafc489
d6ea406
 
 
eafc489
 
 
 
 
 
d6ea406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: Nexus-Core Inference API
emoji: 
colorFrom: green
colorTo: blue
sdk: docker
pinned: false
license: cc-by-nc-4.0
---

# ⚡ Nexus-Core Inference API

Fast and efficient chess move prediction API powered by Nexus-Core v2.0.

## 🎯 Model Info

- **Parameters:** 13M (ResNet-based)
- **Speed:** Ultra-fast inference (~0.5-1s per move)
- **Strength:** ~2000-2200 ELO
- **Architecture:** Pure CNN value network

## 📡 API Endpoint

### `POST /get-move`

**Request:**
```json
{
  "fen": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
  "depth": 4,
  "time_limit": 3000
}
```

**Response:**
```json
{
  "best_move": "e2e4",
  "evaluation": 0.21,
  "depth_searched": 4,
  "nodes_evaluated": 8432,
  "time_taken": 856
}
```

## 🔧 Parameters

- **fen** (required): Board position
- **depth** (optional): 1-6, default 4
- **time_limit** (optional): Max time in ms, default 3000

## 💻 Performance

- **Average Response:** 0.5-1 second @ depth 4
- **Memory Usage:** ~2GB RAM
- **Concurrent Requests:** 4-6 simultaneous

---

Part of GambitFlow AI Suite 🚀