gpterminal 0.1.0 → 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -1
  3. data/lib/client.rb +3 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b11c4f28f70c97e2f7bfa082039d8504e548035cf98b86126d7bafd38098727d
4
- data.tar.gz: 4a992292676cb07170d8588a4a5724e94726db3b0e4437099a784f536195c7a4
3
+ metadata.gz: c9d3896e21d38322ae6c1f44ce257ac10ca66a203d83e4ef4f076fcd6f7f1a65
4
+ data.tar.gz: 6c44b83112a525a480e16d314031cec1294ddc8b32bdec95cc92e296bb5bfcca
5
5
  SHA512:
6
- metadata.gz: f7126e3f4d2082a72402febcf1728f9f8361c3312f3eb465684f1a4f73e044e939e55d4549606a0e27bdfe70db0851c9451be902c014858cdc04684bb314b2c5
7
- data.tar.gz: d3818548a22406e5a1149f9fb275926dcdbbe217f61ba052210bf8cf6637a9dcc0856b6811d96dd1c7963f4e65eeab8f170c6e3238851f77f871bc7d27504b4f
6
+ metadata.gz: 8d00815ae745ec261d0e524ef1054c3eb69d0b89c48725e45ac0b1b19740410be07f846b59ad06faded20e4947d8a95597c03a79b5758293d688cc81923f302b
7
+ data.tar.gz: 370dc69c8b7d854fa28e754a87fb9ad9d63124b16cbfa31dbe351d49bd414e86a8ece4a2c151b6cf565b3a0c590ec0c8961d04acd578903c5aabd5d859c67aa7
data/README.md CHANGED
@@ -13,7 +13,9 @@ $ 1 file changed, 4 insertions(+)
13
13
 
14
14
  ## Getting Started
15
15
 
16
- To use gpterminal, ensure you have Ruby installed on your system. Then, follow these steps:
16
+ You can install it from RubyGems using `gem install gpterminal`, or you can clone it and run it straight from the source.
17
+
18
+ Ensure you have Ruby installed on your system. Then, follow these steps:
17
19
 
18
20
  - Clone the repository or download the source code.
19
21
  - Navigate to the gpterminal directory and run `bundle install` to install dependencies.
data/lib/client.rb CHANGED
@@ -79,7 +79,7 @@ class Client
79
79
 
80
80
  response = openapi_client.chat(
81
81
  parameters: {
82
- model: "gpt-3.5-turbo",
82
+ model: "gpt-4-turbo-preview",
83
83
  messages: @messages,
84
84
  temperature: 0.6,
85
85
  }
@@ -108,7 +108,7 @@ class Client
108
108
 
109
109
  response = openapi_client.chat(
110
110
  parameters: {
111
- model: "gpt-4",
111
+ model: "gpt-4-turbo-preview",
112
112
  messages: @messages,
113
113
  temperature: 0.6,
114
114
  }
@@ -151,7 +151,7 @@ class Client
151
151
 
152
152
  response = openapi_client.chat(
153
153
  parameters: {
154
- model: "gpt-4",
154
+ model: "gpt-4-turbo-preview",
155
155
  messages: @messages,
156
156
  temperature: 0.6,
157
157
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gpterminal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Hough