gpterm 0.6.2 → 0.6.4

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: a7f8d5042eee54849bba393ae5db6705de179ea794ad3221f71d4b14477fa1a7
4
- data.tar.gz: efefab0a17acd5b1897d202496c3e41213cbd3502504a767fa9a218f5b75a7f1
3
+ metadata.gz: 0ad1f6eabb19a5f3894f80cd8c84a74a9ec8108672cd428a0251113aef9c76a4
4
+ data.tar.gz: d91084eb9b0ccf0833131bf4a92f186bba0e9624619588f2a3d6a524f12e8887
5
5
  SHA512:
6
- metadata.gz: 3ae072a25e1b333d61f0ff076c4283b18eedf80b507d46dd790d3d1c6e620be003b66e3965dc6cb24add7794cc3016968e6e759d56673ea52dc7dde605381446
7
- data.tar.gz: eaa98c3aa8d33abe149269c483554ddd8f9dc4cf7f6db4c1c4506ea4bdeac4a7adf487dd245ef5ea1bf9285113c2b78435bbc1bacb11a2aac3f68cd780016798
6
+ metadata.gz: 34becbe3683e7e36155e5f53398c3fb2983599d9ce64f7034f40140baab20973efb92bc33a426bb17a91084c64d0867db9c5944e5576d33c10014dc2603293b8
7
+ data.tar.gz: 2d2c8faac10d19fca4ce26701c2add550587200f95c4ed1411074d1e708ac7cc08f0fb97224b7b10bea9c1199f44a0874f931712b5d66e9f04b1a13388a18030
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  **WARNING:** `gpterm` has very few guardrails. If used indiscriminately, it can wipe your entire system or leak information.
4
4
 
5
- ![gpterm-fb-for-dogs](https://github.com/basicallydan/gpterm/assets/516325/7a5bed4f-6f41-4d0a-85d9-79fb071c1aaf)
5
+ ![gpterm-fb-for-dogs-18-feb](https://github.com/basicallydan/gpterm/assets/516325/db45357d-2270-4253-b344-10523bea34e1)
6
6
 
7
7
  `gpterm` is a powerful, flexible and dangerous command-line tool designed to help you generate commands for your terminal using OpenAI's Chat Completions. It will not execute commands without your consent, but please do check which commands it is presenting before you let it execute them. Like so:
8
8
 
data/config/prompts.yml CHANGED
@@ -40,7 +40,7 @@ system: |
40
40
  - The response MUST start with $$ and end with $$, and be a single line with only alphanumeric characters and underscores
41
41
  - The response MUST match one of the codes provided in the prompt
42
42
  info_gathering: |
43
- Your FIRST response should be a list of commands that will be automatically executed to gather more information about the user's system. For this response, additonal formatting rules apply:
43
+ Your FIRST response should be a list of commands that will be automatically executed to gather more information about the user's system. For this response, additional rules apply:
44
44
  - The response MUST NOT contain any plain language instructions, and must not start with or end with backticks to indicate code.
45
45
  - The commands MUST NOT make any changes to the user's system.
46
46
  - The commands MUST NOT make any changes to any files on the user's system.
@@ -51,6 +51,9 @@ info_gathering: |
51
51
  - The commands MAY gather information about the user's system, such as the version of a software package, or the contents of a file.
52
52
  - The commands CAN pipe their output into other commands.
53
53
  - The commands SHOULD tend to gather more verbose information INSTEAD OF more concise information.
54
+ - The commands in this response MUT NOT accomplish the user's goal.
55
+ - The commands in this should ONLY be used to collect more information
56
+ - If you already know the command to accomplish the goal and do not need to collect information, you MUST respond with the $$no_gathering_needed$$ INSTRUCTION CODE.
54
57
 
55
58
  This will help you to provide a more accurate response to the user's goal.
56
59
 
data/lib/client.rb CHANGED
@@ -79,9 +79,16 @@ class Client
79
79
  def continue_conversation(prompt)
80
80
  @messages << { role: "user", content: prompt }
81
81
 
82
+ model = @config["model"]
83
+
84
+ if !model || model.length > 0
85
+ model = "gpt-4-turbo-preview"
86
+ end
87
+
88
+
82
89
  response = openai_client.chat(
83
90
  parameters: {
84
- model: @config["model"] || "gpt-4-turbo-preview",
91
+ model: model,
85
92
  messages: @messages,
86
93
  temperature: 0.6,
87
94
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gpterm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Hough
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-18 00:00:00.000000000 Z
11
+ date: 2024-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-openai