webxos commited on
Commit
13174de
·
verified ·
1 Parent(s): d115aa6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -96,6 +96,14 @@ curl -fsSL https://ollama.com/install.sh | sh
96
  ollama serve & # start the service
97
  ollama pull qwen2.5:0.5b # or another model of your choice
98
  ```
 
 
 
 
 
 
 
 
99
 
100
  ### 4. Compile PENCILCLAW
101
  Place the source files in the same directory and compile:
 
96
  ollama serve & # start the service
97
  ollama pull qwen2.5:0.5b # or another model of your choice
98
  ```
99
+ ## Custom Models
100
+
101
+ Edit line 36 of the pencilclaw.cpp file:
102
+
103
+ ```
104
+ // Model name – change this to match your installed model (e.g., "llama3", "qwen2.5", "mistral")
105
+ const std::string MODEL_NAME = "qwen2.5:0.5b";
106
+ ```
107
 
108
  ### 4. Compile PENCILCLAW
109
  Place the source files in the same directory and compile: