File size: 899 Bytes
5bf0029 |
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 |
---
title: Nexus-Nano Inference API
emoji: π
colorFrom: yellow
colorTo: red
sdk: docker
pinned: false
license: cc-by-nc-4.0
---
# π Nexus-Nano Inference API
Ultra-lightweight chess engine for instant responses.
## π― Model Info
- **Parameters:** 2.8M (Compact ResNet)
- **Speed:** Lightning-fast (~0.2-0.5s per move)
- **Strength:** ~1800-2000 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": 3
}
```
**Response:**
```json
{
"best_move": "e2e4",
"evaluation": 0.18,
"depth_searched": 3,
"nodes_evaluated": 2847,
"time_taken": 234
}
```
## π» Performance
- **Average Response:** 0.2-0.5 seconds @ depth 3
- **Memory Usage:** ~1GB RAM
- **Perfect for:** Rapid games, mobile apps, tutorials
---
Part of GambitFlow AI Suite β‘
|