Skip to content

Commit b71398f

Browse files
committed
Update readme
1 parent ad022da commit b71398f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,9 @@ This is a white cane, often used by individuals who are blind or visually impair
229229
The `pop` command with no argument deletes the last message of a conversation:
230230

231231
```
232+
(gpt-4o) say Responding with only one word, tell me a female given name.
233+
...
234+
Alice.
232235
(gpt-4o) pop
233236
'Alice.' deleted
234237
(gpt-4o) send
@@ -316,7 +319,7 @@ The `edit` command with no arguments opens the contents of the last message in a
316319
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.
317320

318321
### 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:
320323

321324
```
322325
(gpt-4o) model gpt-4o-mini
@@ -438,7 +441,7 @@ The `unname` command removes a name definition. With a role passed as an argumen
438441
```
439442
(gpt-4o) view
440443
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?
442445
```
443446

444447
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
525528
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:
526529

527530
```
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?
529532
...
530533
F(n) = (φ^n - ψ^n) / √5
531534
@@ -540,7 +543,7 @@ By default, the prompt changes to indicate the current thread. All messages have
540543

541544
```
542545
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?
544547
assistant: F(n) = (φ^n - ψ^n) / √5
545548
546549
where:
@@ -572,7 +575,7 @@ assistant: Braille was invented by Louis Braille, who was inspired by a tactile
572575
(gpt-4o) thread induction
573576
Switched to thread 'induction'
574577
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?
576579
assistant: F(n) = (φ^n - ψ^n) / √5
577580
578581
where:
@@ -619,7 +622,7 @@ Cleared
619622
Switched to thread 'induction2'
620623
induction2(gpt-4o) copy 1 2
621624
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...'
623626
Last message selected: 'F(n) = (φ^n - ψ^n) / √5 where: φ = (1 + √5) / 2 ψ =...'
624627
Copy to detached thread? (y/n)y
625628
Copied

0 commit comments

Comments
 (0)