Document local setup for NanoBot with Atomic Chat

Added instructions for running NanoBot locally using Atomic Chat.
This commit is contained in:
yanalialiuk 2026-05-19 14:49:04 +03:00 committed by GitHub
parent 6d07aa6059
commit 705abff7a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -188,7 +188,35 @@ Configure these **two parts** in your config (other options have defaults). Add
}
}
```
*Run NanoBot Locally* (No Cloud)
Use a local model instead of a hosted API provider.
| Step | What to do |
|---|---|
| 1 | Install [Atomic Chat](https://atomic.chat/) on your machine. |
| 2 | Open Atomic Chat, download a model, and keep the app running (the local API is enabled by default). |
| 3 | In Atomic Chat, copy the model ID exposed by the local API. For example, the model ID for `Qwen 3 32B` might be `qwen3-32b`. |
| 4 | Open `~/.nanobot/config.json` and add the Atomic Chat provider settings shown below. Replace the example model ID with the one from Step 3. Merge this into your existing config instead of replacing the whole file. |
Example:
```json
{
"providers": {
"atomic_chat": {
"apiKey": null,
"apiBase": "http://127.0.0.1:1337/v1"
}
},
"agents": {
"defaults": {
"provider": "atomic_chat",
"model": "qwen3-32b"
}
}
}
```
**3. Chat**
```bash
@ -316,4 +344,4 @@ This project was started by [Xubin Ren](https://github.com/re-bin) as a personal
<p align="center">
<em> Thanks for visiting ✨ nanobot!</em><br><br>
<img src="https://visitor-badge.laobi.icu/badge?page_id=HKUDS.nanobot&style=for-the-badge&color=00d4ff" alt="Views">
</p>
</p>