Skip to content

Commit 9bcb696

Browse files
committed
Fix: align ollama defaults with docs
1 parent 535b3bc commit 9bcb696

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,19 +174,19 @@ This makes it easy to tweak the tone, iterate on suggestions, or fine-tune the f
174174
commit llm update
175175
```
176176

177-
**Set LLM as default**
177+
### Set LLM as default
178178

179179
```bash
180180
Select: Set Default
181181
```
182182

183-
**Change API Key**
183+
### Change API Key
184184

185185
```bash
186186
Select: Change API Key
187187
```
188188

189-
**Delete LLM**
189+
### Delete LLM
190190

191191
```bash
192192
Select: Delete

cmd/cli/createMsg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ func generateMessage(provider types.LLMProvider, config *types.Config, changes s
247247
}
248248
model := os.Getenv("OLLAMA_MODEL")
249249
if model == "" {
250-
model = "llama3:latest"
250+
model = "llama3.1"
251251
}
252252
return ollama.GenerateCommitMessage(config, changes, url, model, opts)
253253
default:

0 commit comments

Comments
 (0)