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.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/client.rb +3 -3
- 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: c9d3896e21d38322ae6c1f44ce257ac10ca66a203d83e4ef4f076fcd6f7f1a65
|
4
|
+
data.tar.gz: 6c44b83112a525a480e16d314031cec1294ddc8b32bdec95cc92e296bb5bfcca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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-
|
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
|
}
|