gpterm 0.6.1 → 0.6.2
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/config/prompts.yml +2 -0
- 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: a7f8d5042eee54849bba393ae5db6705de179ea794ad3221f71d4b14477fa1a7
|
4
|
+
data.tar.gz: efefab0a17acd5b1897d202496c3e41213cbd3502504a767fa9a218f5b75a7f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ae072a25e1b333d61f0ff076c4283b18eedf80b507d46dd790d3d1c6e620be003b66e3965dc6cb24add7794cc3016968e6e759d56673ea52dc7dde605381446
|
7
|
+
data.tar.gz: eaa98c3aa8d33abe149269c483554ddd8f9dc4cf7f6db4c1c4506ea4bdeac4a7adf487dd245ef5ea1bf9285113c2b78435bbc1bacb11a2aac3f68cd780016798
|
data/config/prompts.yml
CHANGED
@@ -20,6 +20,8 @@ system: |
|
|
20
20
|
- The response MUST keep in mind that each line of the response will be executed in the shell in a subshell, and the output of each command will be captured
|
21
21
|
- The commands MUST NOT contain any placeholders which the user is expected to replace with their own values
|
22
22
|
- If a command needs to be run in another directory, the command to change directory MUST be part of that command. To execute a command in a different directory, you must chain the cd command with the command you want to run, like so: `cd /path/to/directory && command`. You will need to do the same for any command that requires a different working directory, even if you have used cd in a previous command
|
23
|
+
- The commands MUST NOT involve any multi-line strings, heredocs, loops, conditionals or anything which necessitates running multiple lines in a single command. So no << EOF or anything like that
|
24
|
+
- Each command MUST BE executable on a single line in the shell
|
23
25
|
|
24
26
|
When responding with an INSTRUCTION CODE indicating that no commands can be generated or are necessary:
|
25
27
|
- The response MUST start with $$ and end with $$, and be a single line with only alphanumeric characters and underscores
|