Skip to content

Commit

Permalink
docs: remove rc1 install encouragement
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe committed May 9, 2024
1 parent 1731840 commit 2a0302e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ the [model table](https://kani.readthedocs.io/en/latest/engines.html), or use th

```shell
# for OpenAI models
$ pip install "kani[openai]~=1.0.0rc1"
$ pip install "kani[openai]"
# for Hugging Face models
$ pip install "kani[huggingface]~=1.0.0rc1" torch
$ pip install "kani[huggingface]" torch
# or install everything:
$ pip install "kani[all]~=1.0.0rc1"
$ pip install "kani[all]"
```

For the most up-to-date changes and new models, you can also install the development version from Git's `main` branch:
Expand All @@ -118,7 +118,7 @@ First, install the library. In this quickstart, we'll use the OpenAI engine, tho
is [model-agnostic](https://kani.readthedocs.io/en/latest/engines.html).

```shell
$ pip install "kani[openai]~=1.0.0rc1"
$ pip install "kani[openai]"
```

Then, let's use kani to create a simple chatbot using ChatGPT as a backend.
Expand Down

0 comments on commit 2a0302e

Please sign in to comment.