chat_gpt_client 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +55 -0
- data/LICENSE.txt +21 -0
- data/README.md +33 -0
- data/Rakefile +12 -0
- data/chat_gpt_client.gemspec +39 -0
- data/lib/chat_gpt/client.rb +93 -0
- data/lib/chat_gpt/version.rb +5 -0
- data/lib/chat_gpt.rb +11 -0
- data/sig/chat_gpt.rbs +4 -0
- metadata +60 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f7641c9f199e34018c618fda5d669b58a6ca5ae5c727d72aebe1587beb0d7b82
|
4
|
+
data.tar.gz: ad2f1f30e8b3b766310d403646e872f38bdbd823d9110abc15d6cdcea95d32e5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2bd0344f4af641f8fc9d96c8d771df55e9eb7852365c7a8b559e6ab4dfc70f8a9fcd9daf5f8881652753afb1a0bc9ea6495c14e72808312e5fd97686687d691c
|
7
|
+
data.tar.gz: f570d3e7f136eb8e7725e1f1b4ab80d431faddd550526e1ba67ddc782d3af2a169a7bf3775f6fc99fa6bb3dfe12fed65a4cb84f56530600c59ca25e5e66e2401
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
chat_gpt_client (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
ast (2.4.2)
|
10
|
+
diff-lcs (1.5.0)
|
11
|
+
parallel (1.22.1)
|
12
|
+
parser (3.1.2.1)
|
13
|
+
ast (~> 2.4.1)
|
14
|
+
rainbow (3.1.1)
|
15
|
+
rake (13.0.6)
|
16
|
+
regexp_parser (2.5.0)
|
17
|
+
rexml (3.2.5)
|
18
|
+
rspec (3.11.0)
|
19
|
+
rspec-core (~> 3.11.0)
|
20
|
+
rspec-expectations (~> 3.11.0)
|
21
|
+
rspec-mocks (~> 3.11.0)
|
22
|
+
rspec-core (3.11.0)
|
23
|
+
rspec-support (~> 3.11.0)
|
24
|
+
rspec-expectations (3.11.1)
|
25
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
26
|
+
rspec-support (~> 3.11.0)
|
27
|
+
rspec-mocks (3.11.1)
|
28
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
+
rspec-support (~> 3.11.0)
|
30
|
+
rspec-support (3.11.1)
|
31
|
+
rubocop (1.27.0)
|
32
|
+
parallel (~> 1.10)
|
33
|
+
parser (>= 3.1.0.0)
|
34
|
+
rainbow (>= 2.2.2, < 4.0)
|
35
|
+
regexp_parser (>= 1.8, < 3.0)
|
36
|
+
rexml
|
37
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
38
|
+
ruby-progressbar (~> 1.7)
|
39
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
40
|
+
rubocop-ast (1.21.0)
|
41
|
+
parser (>= 3.1.1.0)
|
42
|
+
ruby-progressbar (1.11.0)
|
43
|
+
unicode-display_width (2.3.0)
|
44
|
+
|
45
|
+
PLATFORMS
|
46
|
+
x86_64-darwin-21
|
47
|
+
|
48
|
+
DEPENDENCIES
|
49
|
+
chat_gpt_client!
|
50
|
+
rake (~> 13.0)
|
51
|
+
rspec (~> 3.0)
|
52
|
+
rubocop (~> 1.21)
|
53
|
+
|
54
|
+
BUNDLED WITH
|
55
|
+
2.3.10
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2023 Francesco Boffa
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Ruby ChatGPT Client
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/chat_gpt`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
10
|
+
|
11
|
+
$ bundle add chat_gpt_client
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
$ gem install chat_gpt_client
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Write usage instructions here
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
24
|
+
|
25
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/francescobbo/chat_gpt.
|
30
|
+
|
31
|
+
## License
|
32
|
+
|
33
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/chat_gpt/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "chat_gpt_client"
|
7
|
+
spec.version = ChatGPT::VERSION
|
8
|
+
spec.authors = ["Francesco Boffa"]
|
9
|
+
spec.email = ["fra.boffa@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "ChatGPT API client"
|
12
|
+
spec.description = "An API client for OpenAI ChatGPT"
|
13
|
+
spec.homepage = "https://github.com/francescobbo/chat_gpt"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 2.6.0"
|
16
|
+
|
17
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
|
+
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/francescobbo/chat_gpt"
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/francescobbo/chat_gpt/blob/master/CHANGELOG.md"
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
28
|
+
end
|
29
|
+
end
|
30
|
+
spec.bindir = "exe"
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
32
|
+
spec.require_paths = ["lib"]
|
33
|
+
|
34
|
+
# Uncomment to register a new dependency of your gem
|
35
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
36
|
+
|
37
|
+
# For more information and examples about making a new gem, check out our
|
38
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
39
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ChatGPT
|
4
|
+
# The client for the OpenAI ChatGPT API
|
5
|
+
class Client
|
6
|
+
def initialize(api_key: ENV["OPENAI_API_KEY"], system_prompt: nil)
|
7
|
+
if api_key.nil? || api_key.empty?
|
8
|
+
raise Error, "You must provide an API token or set the OPENAI_API_KEY environment variable"
|
9
|
+
end
|
10
|
+
|
11
|
+
@api_key = api_key
|
12
|
+
@system_prompt = system_prompt
|
13
|
+
@history = []
|
14
|
+
end
|
15
|
+
|
16
|
+
def autocomplete(message)
|
17
|
+
result = request(message)
|
18
|
+
|
19
|
+
choice = result["choices"][0]
|
20
|
+
text = choice["message"]["content"].strip
|
21
|
+
complete = choice["finish_reason"] == "stop"
|
22
|
+
|
23
|
+
add_history("assistant", text)
|
24
|
+
|
25
|
+
{ text: text, complete: complete }
|
26
|
+
end
|
27
|
+
|
28
|
+
def reset
|
29
|
+
@history = []
|
30
|
+
end
|
31
|
+
|
32
|
+
def shift_history
|
33
|
+
@history.shift(2)
|
34
|
+
end
|
35
|
+
|
36
|
+
private
|
37
|
+
|
38
|
+
def http
|
39
|
+
@http ||= begin
|
40
|
+
uri = URI("https://api.openai.com")
|
41
|
+
|
42
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
43
|
+
http.use_ssl = true
|
44
|
+
http
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def request(message)
|
49
|
+
req = Net::HTTP::Post.new("/v1/chat/completions")
|
50
|
+
req["Authorization"] = "Bearer #{@api_key}"
|
51
|
+
req["Content-Type"] = "application/json"
|
52
|
+
|
53
|
+
add_history("user", message)
|
54
|
+
|
55
|
+
req.body = build_body.to_json
|
56
|
+
|
57
|
+
extract_response(http.request(req))
|
58
|
+
end
|
59
|
+
|
60
|
+
def extract_response(response)
|
61
|
+
raise Error, "Error: #{response.code} - #{response.body}" unless response.code == "200"
|
62
|
+
|
63
|
+
JSON.parse(response.body)
|
64
|
+
end
|
65
|
+
|
66
|
+
def build_body
|
67
|
+
{
|
68
|
+
model: "gpt-3.5-turbo",
|
69
|
+
messages: history
|
70
|
+
}
|
71
|
+
end
|
72
|
+
|
73
|
+
def system_message
|
74
|
+
return nil if @system_prompt.nil?
|
75
|
+
|
76
|
+
{
|
77
|
+
role: "system",
|
78
|
+
content: @system_prompt
|
79
|
+
}
|
80
|
+
end
|
81
|
+
|
82
|
+
def add_history(role, message)
|
83
|
+
@history << {
|
84
|
+
role: role,
|
85
|
+
content: message
|
86
|
+
}
|
87
|
+
end
|
88
|
+
|
89
|
+
def history
|
90
|
+
[system_message].concat(@history).compact
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
data/lib/chat_gpt.rb
ADDED
data/sig/chat_gpt.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chat_gpt_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Francesco Boffa
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-03-09 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: An API client for OpenAI ChatGPT
|
14
|
+
email:
|
15
|
+
- fra.boffa@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".rspec"
|
21
|
+
- ".rubocop.yml"
|
22
|
+
- CHANGELOG.md
|
23
|
+
- Gemfile
|
24
|
+
- Gemfile.lock
|
25
|
+
- LICENSE.txt
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- chat_gpt_client.gemspec
|
29
|
+
- lib/chat_gpt.rb
|
30
|
+
- lib/chat_gpt/client.rb
|
31
|
+
- lib/chat_gpt/version.rb
|
32
|
+
- sig/chat_gpt.rbs
|
33
|
+
homepage: https://github.com/francescobbo/chat_gpt
|
34
|
+
licenses:
|
35
|
+
- MIT
|
36
|
+
metadata:
|
37
|
+
allowed_push_host: https://rubygems.org
|
38
|
+
homepage_uri: https://github.com/francescobbo/chat_gpt
|
39
|
+
source_code_uri: https://github.com/francescobbo/chat_gpt
|
40
|
+
changelog_uri: https://github.com/francescobbo/chat_gpt/blob/master/CHANGELOG.md
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 2.6.0
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
requirements: []
|
56
|
+
rubygems_version: 3.3.7
|
57
|
+
signing_key:
|
58
|
+
specification_version: 4
|
59
|
+
summary: ChatGPT API client
|
60
|
+
test_files: []
|