Added more items to the README.md doc

This commit is contained in:
milo 2025-05-07 23:39:52 -04:00
parent 0d86681323
commit 1f5f9c7297

View file

@ -112,6 +112,29 @@ A structured build plan for developing and deploying the AlphaBot Discord compan
- [ ] Plan hosting model for non-technical users
- [ ] Write self-host instructions in `README.md`
---
### 🧬 Final Day Delta Modelfile Integration
> Goal: Make Delta self-contained by baking her personality directly into an Ollama Modelfile.
This final step removes the need for runtime prompt injection by turning Delta into her **own model** using Ollamas custom model system.
#### ✅ Tasks
- [ ] Create a `Modelfile` for Delta inside `models/delta/`
- [ ] Set `FROM llama3` or other base model
- [ ] Add personality using the `SYSTEM` directive
- [ ] Tune parameters:
- `temperature` for flair (suggested: `0.85`)
- `num_ctx` for longer memory (suggested: `4096`)
- `stop` tokens like `User:` to avoid rambling
- [ ] Define a conversation `TEMPLATE` that ensures in-character replies
- [ ] Build the model:
```bash
ollama create delta -f ./models/delta/Modelfile
---
*Progress last updated: May 7, 2025*