We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e60263 commit e601cd8Copy full SHA for e601cd8
README.md
@@ -39,6 +39,20 @@ The FastAPI server provides endpoints to interact with Sugar-AI.
39
```sh
40
pip install -r requirements.txt
41
```
42
+## Local Development (DEV_MODE)
43
+
44
+By default, Sugar-AI loads large language models intended for production use.
45
+These models may require significant memory and can cause startup failures
46
+on low-memory contributor machines.
47
48
+To improve the local development experience, Sugar-AI provides a development
49
+mode that uses a lightweight, CPU-friendly model.
50
51
+### Enable DEV_MODE
52
53
+```bash
54
+DEV_MODE=1 python main.py
55
56
57
### Run the server
58
0 commit comments