README.md in openai_pipe-0.1.0 vs README.md in openai_pipe-0.1.1
- old
+ new
@@ -150,17 +150,19 @@
$ gem install openai_pipe
## Setup
-By default the executable is called `openai_pipe`. It is reccommended to alias this command to something shorter in .bashrc or equivalent, e.g.
+This library uses [quick_openai](https://github.com/Aesthetikx/quick_openai') which itself uses [ruby-openai](https://github.com/alexrudall/ruby-openai), so you may want to familiarise yourself with those projects first.
+
+This library uses OpenAI GPT3 to generate responses, so you will need to have your access token available in ENV. In .bashrc or equivalent,
```bash
-alias ai="openai_pipe"
+export OPENAI_ACCESS_TOKEN=mytoken
```
-You will also need to have your OpenAI access token in ENV, so also in .bashrc or equivalent,
+By default the executable is called `openai_pipe`. It is reccommended to alias this command to something shorter in .bashrc or equivalent, e.g.
```bash
-export OPENAI_ACCESS_TOKEN=mytoken
+alias ai="openai_pipe"
```
## Notes
Be aware that there is a cost associated every time GPT3 is invoked, so be mindful of your account usage. Also be wary of sending sensitive data to OpenAI, and also wary of arbitrarily executing scripts or programs that GPT3 generates.