| --- |
| 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 β‘ |
|
|