Skip to content

Commit 6b1e2dd

Browse files
committed
readme
1 parent e4b765c commit 6b1e2dd

File tree

2 files changed

+17
-22
lines changed

2 files changed

+17
-22
lines changed

.github/README.md

+16-21
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Visit your [API Keys](https://platform.openai.com/account/api-keys) page to retr
2020
###### ℹ️ You can omit keys for unused API endpoints
2121
```bash
2222
OPENAI_API_KEY={YOUR OPENAI API KEY}
23-
PRINTIFY_API_KEY={YOUR PRINTIFY API KEY}
2423
DISCORD_API_KEY={YOUR DISCORD BOT API KEY}
2524
DISCORD_PUB_KEY={YOUR DISCORD BOT PUB KEY}
2625
```
@@ -30,16 +29,16 @@ DISCORD_PUB_KEY={YOUR DISCORD BOT PUB KEY}
3029
## Ponder a single thought
3130
### CLI
3231
```bash
33-
ponder --prompt "AI is Amazing"
32+
ponder "What is AI"
3433
```
3534
### Docker
3635
#### Running ponder in docker is exactly the same, but you have to provide the env vars when running
3736
```bash
38-
docker run -e OPENAI_API_KEY=$OPENAI_API_KEY ghcr.io/seemywingz/ponder:latest --prompt "Ai is Amazing"
37+
docker run -e OPENAI_API_KEY=$OPENAI_API_KEY ghcr.io/seemywingz/ponder:latest "What is AI"
3938
```
4039
#### Example Output
4140
```bash
42-
AI is indeed amazing. It has the potential to revolutionize many industries, from healthcare to transportation. AI can help automate mundane tasks, allowing humans to focus on more complex and creative tasks. AI can also be used to analyze large amounts of data quickly and accurately, helping to make better decisions. AI can also be used to create personalized experiences for customers, making them feel more connected to a company or product.
41+
AI, or Artificial Intelligence, refers to the simulation of human intelligence processes by machines, especially computer systems. These processes include learning (the acquisition of information and rules for using the information), reasoning (using the rules to reach approximate or definite conclusions), and self-correction.
4342
```
4443

4544
## A small chat
@@ -48,22 +47,19 @@ ponder --convo
4847
```
4948
#### Example Ouput
5049
```bash
51-
You:
52-
Hello, Ponder
50+
Ponder:
51+
Hello! How can I assist you today?
5352

54-
Ponder:
55-
Hello there! How can I help you?
53+
You:
54+
You are so helpful
5655

57-
You:
58-
you already have thank you
59-
60-
Ponder:
61-
Thank you for your kind words!
56+
Ponder:
57+
Thank you for your kind words! I'm here to help. If you have any questions or need assistance with something, feel free to ask.
6258
```
6359
6460
## Image Generation
6561
```bash
66-
ponder image -p "a ferocious cat with wings and fire"
62+
ponder image "a ferocious cat with wings and fire"
6763
```
6864
#### Example Ouput
6965
```bash
@@ -73,13 +69,13 @@ ponder image -p "a ferocious cat with wings and fire"
7369
7470
### You can always refer to the `--help` menu as well.
7571
```yaml
72+
7673
Ponder
7774
GitHub: https://github.com/seemywingz/ponder
78-
App Version: v0.3.0
75+
App Version: v0.4.0
7976
8077
Ponder uses OpenAI's API to generate text responses to user input.
81-
You can use Ponder as a Discord chat bot or to generate images using the DALL-E API.
82-
Or whatever else you can think of...
78+
Or whatever else you can think of. 🤔
8379

8480
Usage:
8581
ponder [flags]
@@ -92,16 +88,15 @@ Available Commands:
9288
discord-bot Discord Chat Bot Integration
9389
help Help about any command
9490
image Generate an image from a prompt
95-
printify Interact with the Printify API
91+
tts OpenAI Text to Speech API - TTS
9692

9793
Flags:
9894
--config string config file
9995
-c, --convo Conversational Style chat
10096
-h, --help help for ponder
101-
-x, --perform Attempt to perform the response as cli command
102-
-p, --prompt string Prompt AI generation
103-
-s, --say Say text out loud (MacOS only)
97+
--narrate Narrate the response using TTS and the default audio output
10498
-v, --verbose verbose output
99+
--voice string Voice to use: alloy, ash, coral, echo, fable, onyx, nova, sage and shimmer (default "onyx")
105100

106101
Use "ponder [command] --help" for more information about a command.
107102
```

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
var ponderMessages = []goai.Message{}
18-
var APP_VERSION = "v0.1.0"
18+
var APP_VERSION = "v0.4.0"
1919
var ai *goai.Client
2020

2121
var verbose,

0 commit comments

Comments
 (0)