You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,9 @@ This is a white cane, often used by individuals who are blind or visually impair
229
229
The `pop` command with no argument deletes the last message of a conversation:
230
230
231
231
```
232
+
(gpt-4o) say Responding with only one word, tell me a female given name.
233
+
...
234
+
Alice.
232
235
(gpt-4o) pop
233
236
'Alice.' deleted
234
237
(gpt-4o) send
@@ -316,7 +319,7 @@ The `edit` command with no arguments opens the contents of the last message in a
316
319
The `stream` command toggles message streaming. By default, streaming is enabled, so long responses from the language model are output in real time as they are generated. While a message is being streamed, pressing <kbd>Control</kbd>+<kbd>c</kbd> causes Gptcmd to stop waiting for the message to generate fully, allowing other commands to be used. When streaming is disabled, Gptcmd retrieves an entire response for each query and displays it when it arrives.
317
320
318
321
### Model selection
319
-
The `model` command switches the active model. For instance, we can switch to `gpt-4o-mini`, a smaller, cheaper model offered by OpenAI:
322
+
The `model` command switches the active model. For instance, we can switch to [`gpt-4o-mini`](https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/), a smaller, cheaper model offered by OpenAI:
320
323
321
324
```
322
325
(gpt-4o) model gpt-4o-mini
@@ -438,7 +441,7 @@ The `unname` command removes a name definition. With a role passed as an argumen
438
441
```
439
442
(gpt-4o) view
440
443
Michael: Hello!
441
-
assistant: Hello, Michael! How can I help you today?
444
+
assistant: Hello! You mentioned your name is Michael. How can I assist you today?
442
445
```
443
446
444
447
Name annotations are useful for providing one- or multi-shot prompts to GPT, in which example user and assistant messages help inform future responses:
@@ -525,7 +528,7 @@ Until this point, we have been engaging in a single conversation (or series of c
525
528
Gptcmd starts in the "detached thread", a scratch area intended for quick conversation. A new, named conversation thread can be created from the current thread with the `thread` command, which takes a name for the new thread as an argument:
526
529
527
530
```
528
-
(gpt-4o) say Responding only using ascii symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
531
+
(gpt-4o) say Responding only using ASCII/Unicode symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
529
532
...
530
533
F(n) = (φ^n - ψ^n) / √5
531
534
@@ -540,7 +543,7 @@ By default, the prompt changes to indicate the current thread. All messages have
540
543
541
544
```
542
545
induction(gpt-4o) view
543
-
user: Responding only using ascii symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
546
+
user: Responding only using ASCII/Unicode symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
544
547
assistant: F(n) = (φ^n - ψ^n) / √5
545
548
546
549
where:
@@ -572,7 +575,7 @@ assistant: Braille was invented by Louis Braille, who was inspired by a tactile
572
575
(gpt-4o) thread induction
573
576
Switched to thread 'induction'
574
577
induction(gpt-4o) last 3
575
-
user: Responding only using ascii symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
578
+
user: Responding only using ASCII/Unicode symbols and without narrative explanation, what is the closed-form formula to calculate the nth Fibonacci number?
576
579
assistant: F(n) = (φ^n - ψ^n) / √5
577
580
578
581
where:
@@ -619,7 +622,7 @@ Cleared
619
622
Switched to thread 'induction2'
620
623
induction2(gpt-4o) copy 1 2
621
624
Selecting 2 messages
622
-
First message selected: 'Responding only using ascii symbols and without...'
625
+
First message selected: 'Responding only using ASCII/Unicode symbols and...'
0 commit comments