Skip to content

Commit dbe44a8

Browse files
committed
doc improvements
1 parent 222baa0 commit dbe44a8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ CLAI (CLI + AI = CLAI) allows you to interact with the OpenAI API in your termin
1313
First, ensure that you have Ruby installed on your system. Then, you can install the gem by running:
1414

1515
```
16-
$ gem install clai
16+
gem install clai
1717
```
1818

1919
## Configuration
2020

2121
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:
2222

2323
```
24-
$ clai setup
24+
clai setup
2525
```
2626

2727
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).
3333
You can chat with ChatGPT with:
3434

3535
```
36-
$ clai chat "Tell me a funny joke"
36+
clai chat "Tell me a funny joke"
3737
```
3838

3939
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.
4343
To view the available commands and options, you can use the `help` command:
4444

4545
```
46-
$ clai help
46+
clai help
4747
```
4848

4949
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.
5353
You can start an interactive session with `clai session` command.
5454

5555
```
56-
$ clai session
56+
clai session
5757
Your prompt: <Enter your prompt here><Enter>
5858
```
5959

@@ -63,18 +63,18 @@ This will start a REPL like process to interact with the OpenAI api.
6363

6464
Here are a few examples to get you started:
6565

66-
```sh
66+
```
6767
# Setup clai on your machine
68-
$ clai setup
68+
clai setup
6969
7070
# Start an interactive chat session
71-
$ clai session
71+
clai session
7272
7373
# Get help about the available commands and options
74-
$ clai help
74+
clai help
7575
7676
# Send a single prompt
77-
$ clai chat "Hello World"
77+
clai chat "Hello World"
7878
```
7979

8080
## Contributing

docs/chat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Some examples:
66

77

88
```
9-
$ clai chat "Tell me a funny joke"
9+
clai chat "Tell me a funny joke"
1010
```

0 commit comments

Comments
 (0)