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
#### Running ponder in docker is exactly the same, but you have to provide the env vars when running
37
36
```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"
39
38
```
40
39
#### Example Output
41
40
```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.
43
42
```
44
43
45
44
## A small chat
@@ -48,22 +47,19 @@ ponder --convo
48
47
```
49
48
#### Example Ouput
50
49
```bash
51
-
You:
52
-
Hello, Ponder
50
+
Ponder:
51
+
Hello! How can I assist you today?
53
52
54
-
Ponder:
55
-
Hello there! How can I help you?
53
+
You:
54
+
You are so helpful
56
55
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.
62
58
```
63
59
64
60
## Image Generation
65
61
```bash
66
-
ponder image -p "a ferocious cat with wings and fire"
62
+
ponder image "a ferocious cat with wings and fire"
67
63
```
68
64
#### Example Ouput
69
65
```bash
@@ -73,13 +69,13 @@ ponder image -p "a ferocious cat with wings and fire"
73
69
74
70
### You can always refer to the `--help` menu as well.
75
71
```yaml
72
+
76
73
Ponder
77
74
GitHub: https://github.com/seemywingz/ponder
78
-
App Version: v0.3.0
75
+
App Version: v0.4.0
79
76
80
77
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. 🤔
83
79
84
80
Usage:
85
81
ponder [flags]
@@ -92,16 +88,15 @@ Available Commands:
92
88
discord-bot Discord Chat Bot Integration
93
89
help Help about any command
94
90
image Generate an image from a prompt
95
-
printifyInteract with the Printify API
91
+
tts OpenAI Text to Speech API - TTS
96
92
97
93
Flags:
98
94
--config string config file
99
95
-c, --convo Conversational Style chat
100
96
-h, --help helpfor 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
104
98
-v, --verbose verbose output
99
+
--voice string Voice to use: alloy, ash, coral, echo, fable, onyx, nova, sage and shimmer (default "onyx")
105
100
106
101
Use "ponder [command] --help"for more information about a command.
0 commit comments