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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f9cafa5a9ee72892de5d30d61a265d6aafe57a992c2be8ca86619a9db35a9ee
4
- data.tar.gz: 6cc58003d2999ee7c5346782fab3ffd2d74857da5752f99a72653876b83c27a5
3
+ metadata.gz: 437890c2af9e01a72a29380386b655cf00df2f512673f56237e7ca0567aa52db
4
+ data.tar.gz: 6bb8314df1fe152733ac8537a16de83f6299db10b265860343fec9f7aa33ee87
5
5
  SHA512:
6
- metadata.gz: feb83d49fee7a876c25260eb8f9d34538f9022266b5f866f3edcd625f6c3cf10453284b4e059b405377bf860baba5d6ef7fe0590b0e3e40314c0c256b253aff5
7
- data.tar.gz: bd432c77c41aa452ab0699e87444fa310c34ffbcf5663f78332933218706ad2f79fc388dd6e973c69204129d0c34e7a1ac1cd129babfceb606d92297ba928a06
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 `openai/gpt-4o-mini` if not specified.
121
+ The default model is `x-ai/grok-code-fast-1` if not specified.
122
122
 
123
123
  ### Prompt Configuration
124
124
 
@@ -1,3 +1,3 @@
1
1
  module Jeeves
2
- VERSION = '2.3.0'
2
+ VERSION = '2.4.0'
3
3
  end
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'] || 'openai/gpt-4o-mini'
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=\"openai/gpt-4o-mini\""
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jeeves-git-commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Bishop