Skip to content

Commit

Permalink
Removes problematic links
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz committed Apr 23, 2024
1 parent 40b33c4 commit 1c327f5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 17 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ back-ends as time goes by:
</thead>
<tbody>
<tr class="odd">
<td style="text-align: center;"><a
href="https://platform.openai.com/docs/introduction">OpenAI</a></td>
<td style="text-align: center;">OpenAI</td>
<td style="text-align: center;">GPT Models accessible via the OpenAI’s
REST API. <code>chattr</code> provides a convenient way to interact with
GPT 4, and 3.5.</td>
Expand Down
23 changes: 12 additions & 11 deletions README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,16 @@ url <- urls[grepl(".io", urls)][[1]]
```

<!-- toc: start -->
- [Intro](#intro)
- [Install](#install)
- [Available models](#available-models)
- [Using](#using)
- [The App](#the-app)
- [Additional ways to interact](#additional-ways-to-interact)
- [How it works](#how-it-works)
- [Keyboard Shortcut](#keyboard-shortcut)
- [How to setup the keyboard shortcut](#how-to-setup-the-keyboard-shortcut)

- [Intro](#intro)
- [Install](#install)
- [Available models](#available-models)
- [Using](#using)
- [The App](#the-app)
- [Additional ways to interact](#additional-ways-to-interact)
- [How it works](#how-it-works)
- [Keyboard Shortcut](#keyboard-shortcut)
- [How to setup the keyboard shortcut](#how-to-setup-the-keyboard-shortcut)

<!-- toc: end -->

Expand All @@ -61,9 +62,9 @@ remotes::install_github("mlverse/chattr")

`chattr` provides two main integration with two main LLM back-ends. Each back-end provides access to multiple LLM types. The plan is to add more back-ends as time goes by:

| Provider | Models | Setup Instructions |
| Provider | Models | Setup Instructions |
|:-----------------:|:--------------------------------:|:-----------------:|
| [OpenAI](https://platform.openai.com/docs/introduction) | GPT Models accessible via the OpenAI's REST API. `chattr` provides a convenient way to interact with GPT 4, and 3.5. | [Interact with OpenAI GPT models](https://mlverse.github.io/chattr/articles/openai-gpt.html) |
| OpenAI | GPT Models accessible via the OpenAI's REST API. `chattr` provides a convenient way to interact with GPT 4, and 3.5. | [Interact with OpenAI GPT models](https://mlverse.github.io/chattr/articles/openai-gpt.html) |
| [LLamaGPT-Chat](https://github.com/kuvaus/LlamaGPTJ-chat) | LLM models available in your computer. Including GPT-J, LLaMA, and MPT. Tested on a [GPT4ALL](https://gpt4all.io/index.html) model. **LLamaGPT-Chat** is a command line chat program for models written in C++. | [Interact with local models](https://mlverse.github.io/chattr/articles/backend-llamagpt.html) |
| [GitHub Copilot](https://docs.posit.co/ide/user/ide/guide/tools/copilot.html) | AI pair programmer that offers autocomplete-style suggestions as you code | [Interact with GitHub Copilot Chat](https://mlverse.github.io/chattr/articles/copilot-chat.html) |

Expand Down
5 changes: 1 addition & 4 deletions vignettes/openai-gpt.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ to make the "chatting" experience with the GPT models seamless.
OpenAI requires a **secret key** to authenticate your user. It is required for
any application non-OpenAI application, such as `chattr`, to have one in order
to function. A key is a long alphanumeric sequence. The sequence is created in
the OpenAI portal. To obtain your **secret key**, follow this link:
[OpenAI API Keys](https://platform.openai.com/account/api-keys)
the OpenAI portal.

By default, `chattr` will look for the **secret key** inside the a Environment
Variable called `OPENAI_API_KEY`. Other packages that integrate with OpenAI use
Expand Down Expand Up @@ -79,8 +78,6 @@ To switch back to GPT 4, run:
chattr_use("gpt4")
```

To see the latest list which endpoint to use, go to : [Model Endpoint Compatibility](https://platform.openai.com/docs/models/model-endpoint-compatibility)

## Data files and data frames

Because it is information about your environment and work space, by default
Expand Down

0 comments on commit 1c327f5

Please sign in to comment.