jeeves-git-commit 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/jeeves/version.rb +1 -1
- data/lib/jeeves.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 437890c2af9e01a72a29380386b655cf00df2f512673f56237e7ca0567aa52db
|
4
|
+
data.tar.gz: 6bb8314df1fe152733ac8537a16de83f6299db10b265860343fec9f7aa33ee87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20b02819f4f01cc3610f13531fc67d5b974d9f051a431dcfe379c8644ce23779a34c66ada84df95931432cebe7c40c3afe8f70965023cd19a6bbec9e16434f99
|
7
|
+
data.tar.gz: '059a47edeba1d3534a82ff9f188c64c286e76d866affa7f39e6a98f49bc72c39cc1915ae377ec89cb1298f15d685a967f085009853093df13a6a7814f973ff3a'
|
data/README.md
CHANGED
@@ -118,7 +118,7 @@ Optionally, you can specify a different model by setting:
|
|
118
118
|
export GIT_COMMIT_MODEL="openai/gpt-4o"
|
119
119
|
```
|
120
120
|
|
121
|
-
The default model is `
|
121
|
+
The default model is `x-ai/grok-code-fast-1` if not specified.
|
122
122
|
|
123
123
|
### Prompt Configuration
|
124
124
|
|
data/lib/jeeves/version.rb
CHANGED
data/lib/jeeves.rb
CHANGED
@@ -120,7 +120,7 @@ module Jeeves
|
|
120
120
|
exit 1
|
121
121
|
end
|
122
122
|
|
123
|
-
model = ENV['GIT_COMMIT_MODEL'] || '
|
123
|
+
model = ENV['GIT_COMMIT_MODEL'] || 'x-ai/grok-code-fast-1'
|
124
124
|
|
125
125
|
prompt_file_path = get_prompt_file_path
|
126
126
|
puts "Using prompt file: #{prompt_file_path}"
|
@@ -180,7 +180,7 @@ module Jeeves
|
|
180
180
|
else
|
181
181
|
puts "Error: API returned empty commit message"
|
182
182
|
puts "This model (#{model}) may not be compatible with direct output."
|
183
|
-
puts "Try using a different model with: export GIT_COMMIT_MODEL=\"
|
183
|
+
puts "Try using a different model with: export GIT_COMMIT_MODEL=\"x-ai/grok-code-fast-1\""
|
184
184
|
exit 1
|
185
185
|
end
|
186
186
|
else
|