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
+10-10
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,15 @@ CLAI (CLI + AI = CLAI) allows you to interact with the OpenAI API in your termin
13
13
First, ensure that you have Ruby installed on your system. Then, you can install the gem by running:
14
14
15
15
```
16
-
$ gem install clai
16
+
gem install clai
17
17
```
18
18
19
19
## Configuration
20
20
21
21
Before using the CLI tool, you need to configure it with your OpenAI API key. You can obtain an API key from the OpenAI website. Once you have your API key, run the following command and provide your key when prompted:
22
22
23
23
```
24
-
$ clai setup
24
+
clai setup
25
25
```
26
26
27
27
This will create a configuration file (`~/.config/clai/clai.yml`) on your system.
@@ -33,7 +33,7 @@ Read more about the setup command [here](docs/setup.md).
33
33
You can chat with ChatGPT with:
34
34
35
35
```
36
-
$ clai chat "Tell me a funny joke"
36
+
clai chat "Tell me a funny joke"
37
37
```
38
38
39
39
This will send the given prompt to the API and display the generated completion.
@@ -43,7 +43,7 @@ This will send the given prompt to the API and display the generated completion.
43
43
To view the available commands and options, you can use the `help` command:
44
44
45
45
```
46
-
$ clai help
46
+
clai help
47
47
```
48
48
49
49
This will display a list of supported commands and their descriptions.
@@ -53,7 +53,7 @@ This will display a list of supported commands and their descriptions.
53
53
You can start an interactive session with `clai session` command.
54
54
55
55
```
56
-
$ clai session
56
+
clai session
57
57
Your prompt: <Enter your prompt here><Enter>
58
58
```
59
59
@@ -63,18 +63,18 @@ This will start a REPL like process to interact with the OpenAI api.
63
63
64
64
Here are a few examples to get you started:
65
65
66
-
```sh
66
+
```
67
67
# Setup clai on your machine
68
-
$ clai setup
68
+
clai setup
69
69
70
70
# Start an interactive chat session
71
-
$ clai session
71
+
clai session
72
72
73
73
# Get help about the available commands and options
0 commit comments