chat_gpt_error_handler 0.2.0 → 0.2.1

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: 8f060d15937f7fa9046e4ab5a2d417d5594900fef00b4302de4c7835c5c05d59
4
- data.tar.gz: c02b547ce605567394c4e49ff564d953dbb9ded90bcde3999106e3a83b1006d9
3
+ metadata.gz: 8eb4d741fe11dd031e02e4405a131ba4a440a0306575a97246b6486de5f7ae3e
4
+ data.tar.gz: 589d87cf005f91a365b9399e99a9d45711dce60d9847500790395c3173f9b097
5
5
  SHA512:
6
- metadata.gz: f412184b2e243fb0445081a6d2ad98cad4e7aecdddd394ae8d5d4543fc79aecac2b139d2d6baa9f862c2df78f2aea09cddf3ea0e7ab23706cd84ee872b09f24b
7
- data.tar.gz: 209e6fa81d297e0592d20963a9d323eed1bf4feaa6d8650498fcb6f82064157382ea1411db5214de20c2a158415cbbf8d6c9c3e5e3fb932b129199a761af7bcc
6
+ metadata.gz: ef2028789e012e4856f1397fcf98c8e2ee3c593a4d22dec620d05a1b20c539b3103e6892e8463e59e1f19f2bee4fa892f49035f3ec80f3818ecf7d7a68663795
7
+ data.tar.gz: cbf4c7bb9ebe54e539e543c36108387c089f9a2fb891968ddf0e7bf0f23a57c5a6d9eb179c3ba63a07da2603201a74e822fe74f1203eeac8648d158e2bf20477
@@ -46,39 +46,48 @@ module ChatGptErrorHandler
46
46
  }
47
47
  )
48
48
 
49
+
49
50
  # Try a second time if the response is empty. Raise the second time
50
51
  if response["choices"].nil?
51
- if @retried.nil?
52
- @retried = true
53
- redo
54
- else
55
- raise "GPT returned an empty response to your error message."
56
- end
52
+ response = client.completions(
53
+ parameters: {
54
+ model: "text-davinci-002",
55
+ prompt: prompt,
56
+ n: 1,
57
+ temperature: 0.85,
58
+ max_tokens: 250,
59
+ stop: nil
60
+ }
61
+ )
57
62
  end
58
63
 
59
- response_text = response["choices"].map { |c| c["text"].to_s }
64
+ if true #response["choices"].nil?
65
+ print_error_and_solution(error, "ChatGPT returned an empty response to your error message. You may need to try again.")
66
+ else
67
+ response_text = response["choices"].map { |c| c["text"].to_s }
60
68
 
61
- response_text = response_text.join("")
62
- shortened_response_text = []
63
- begin
64
- # try to format the response text to be 75 characters per line
65
- response_text.split(" ").reduce("") do |line, word|
66
- if line.length + word.length > 75
67
- shortened_response_text << line
68
- line = word
69
- elsif word == response_text.split(" ").last
70
- shortened_response_text << [line + " " + word]
71
- else
72
- line += (" " + word)
69
+ response_text = response_text.join("")
70
+ shortened_response_text = []
71
+ begin
72
+ # try to format the response text to be 75 characters per line
73
+ response_text.split(" ").reduce("") do |line, word|
74
+ if line.length + word.length > 75
75
+ shortened_response_text << line
76
+ line = word
77
+ elsif word == response_text.split(" ").last
78
+ shortened_response_text << [line + " " + word]
79
+ else
80
+ line += (" " + word)
81
+ end
73
82
  end
83
+ shortened_response_text = shortened_response_text.join("\n")
84
+ rescue => e
85
+ # The formatting does not always work, so if it fails, just use the original response text
86
+ shortened_response_text = response_text
74
87
  end
75
- shortened_response_text = shortened_response_text.join("\n")
76
- rescue => e
77
- # The formatting does not always work, so if it fails, just use the original response text
78
- shortened_response_text = response_text
79
- end
80
88
 
81
- print_error_and_solution(error, shortened_response_text.strip)
89
+ print_error_and_solution(error, shortened_response_text.strip)
90
+ end
82
91
  rescue => gpt_error
83
92
  puts "\e[31mAn error occurred while communicating with GPT:\e[0m"
84
93
  puts gpt_error.message
@@ -1,3 +1,3 @@
1
1
  module ChatGptErrorHandler
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chat_gpt_error_handler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Schwaderer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -74,7 +74,7 @@ licenses:
74
74
  metadata:
75
75
  homepage_uri: https://github.com/schwad/chat_gpt_error_handler
76
76
  source_code_uri: https://github.com/schwad/chat_gpt_error_handler
77
- post_install_message:
77
+ post_install_message:
78
78
  rdoc_options: []
79
79
  require_paths:
80
80
  - lib
@@ -89,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.0.3.1
93
- signing_key:
92
+ rubygems_version: 3.4.1
93
+ signing_key:
94
94
  specification_version: 4
95
95
  summary: Helpful ChatGpt hints for your Rails app
96
96
  test_files: []