-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathREADME.qmd
More file actions
271 lines (209 loc) · 11.1 KB
/
README.qmd
File metadata and controls
271 lines (209 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
---
title: chattr
format: md
---
<!-- badges: start -->
<a href="https://cran.r-project.org/package=chattr" data-original-href="https://cran.r-project.org/package=chattr"><img src="https://www.r-pkg.org/badges/version/chattr" alt="CRAN status" class="img-fluid"/></a> [](https://github.com/mlverse/chattr/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/mlverse/chattr?branch=main)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
```{r}
#| echo: false
#| eval: false
source("utils/toc.R")
toc()
source("utils/models.R")
models()
source("utils/providers.R")
providers()
```
```{r}
#| echo: false
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
<!-- toc: start -->
- [Intro](#intro)
- [Install](#install)
- [Using](#using)
- [Available models](#available-models)
- [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 -->
## Intro {#intro}
`chattr` is an interface to LLMs (Large Language Models). It enables interaction
with the model directly from RStudio and Positron. `chattr` allows you to submit
a prompt to the LLM from your script, or by using the provided Shiny Gadget.
This package's main goal is to aid in exploratory data analysis (EDA) tasks.
The additional information appended to your request, provides a sort of "guard
rails", so that the packages and techniques we usually recommend as best
practice, are used in the model's responses.
## Install {#install}
To install the CRAN version of this package use:
```{r}
#| eval: false
install.packages("chattr")
```
If you wish to use the development version use:
```{r}
#| eval: false
pak::pak("mlverse/chattr")
```
## Using {#using}
Starting with version 0.3, `chattr` integrates with LLM's via the
[`ellmer`](https://ellmer.tidyverse.org/) package.
`ellmer` has a growing list of LLM integrations, including
[OpenAI](https://ellmer.tidyverse.org/reference/chat_openai.html),
[Gemini](https://ellmer.tidyverse.org/reference/chat_gemini.html),
[Deepseek](https://ellmer.tidyverse.org/reference/chat_deepseek.html) and others.
There are several ways to let `chattr` know which LLM to use:
- **Pre-set an R option** - Pass the `ellmer` connection command you wish to use
in the `.chattr_chat` option, for example:
`options(.chattr_chat = ellmer::chat_anthropic())`.
If you add that code to your *.Rprofile*, `chattr` will use that as the default
model and settings to use every time you start an R session. Use the
`usethis::edit_r_profile()` command to easily edit your *.Rprofile*
- **Use an `ellmer` object** - You can pass an `ellmer` chat object directly to
`chattr_use()`:
```r
my_chat <- ellmer::chat_anthropic()
chattr_use(my_chat)
```
- **Named model** - You pass one of several pre-defined provider/model setups.
These setups are represented by labels set by `chattr`. At this time, the
combinations cover 3 providers: OpenAI, Databricks, and Ollama. To use, simply
pass the label to `chattr_use`. To see a full list of the available pre-defined
combinations and their argument values see [Available models](#available-models).
For example, if you wish to use OpenAI's GPT 4.1 Nano model, you simply pass the
corresponding label:
```r
chattr_use("gpt41-nano")
```
- **Select one from a menu (legacy)** - If nothing is passed to `chattr_use()`,
and no option is set, `chattr` will try to create the `ellmer` chat for
you. It will try to figure if you have authentication tokens for **OpenAI**,
**Databricks**, and checks if **Ollama** is running on your machine. `chattr`
then returns a menu based on the providers it was able to find:
``` r
chattr_use()
── chattr - Available models
Select the number of the model you would like to use:
1: Databricks - databricks-dbrx-instruct (databricks-dbrx)
2: Databricks - databricks-meta-llama-3-3-70b-instruct (databricks-meta-llama31-70b)
3: Databricks - databricks-mixtral-8x7b-instruct (databricks-mixtral8x7b)
4: OpenAI - Chat Completions - gpt-4.1-mini (gpt41-mini)
5: OpenAI - Chat Completions - gpt-4.1-nano (gpt41-nano)
6: OpenAI - Chat Completions - gpt-4.1 (gpt41)
7: OpenAI - Chat Completions - gpt-4o (gpt4o)
8: Ollama - llama3.2 (ollama)
Selection:
```
### Available models {#available-models}
For convenience, `chattr` contains some provider/model combinations that you can
use by passing what is under **Use value** to `chattr_use()`:
<!-- models: start -->
|Model & Provider| Use value|
|----|----|
|DBRX (Databricks)| `databricks-dbrx`|
|Meta Llama 3.3 70B (Databricks)| `databricks-meta-llama31-70b`|
|Mixtral 8x7b (Datbricks)| `databricks-mixtral8x7b`|
|GPT 4.1 Mini (OpenAI)| `gpt41-mini`|
|GPT 4.1 Nano (OpenAI)| `gpt41-nano`|
|GPT 4.1 (OpenAI)| `gpt41`|
|GPT 4 Omni (OpenAI)| `gpt4o`|
|Llama 3.2 (Ollama)| `ollama`|
<!-- 'databricks-dbrx', 'databricks-meta-llama31-70b', 'databricks-mixtral8x7b', 'gpt41-mini', 'gpt41-nano', 'gpt41', 'gpt4o', 'ollama'-->
<!-- models: end -->
If the provider and/or model you wish to use is not listed in the table above,
you can create an `ellmer` chat connection directly. And then pass that chat
object to `chattr_use()`. Here is a list of the providers that are currently
available in that package:
<!-- providers: start -->
- Anthropic’s Claude: [`ellmer::chat_anthropic()`](https://ellmer.tidyverse.org/reference/chat_anthropic.html)
- AWS Bedrock: [`ellmer::chat_aws_bedrock()`](https://ellmer.tidyverse.org/reference/chat_aws_bedrock.html)
- Azure OpenAI: [`ellmer::chat_azure_openai()`](https://ellmer.tidyverse.org/reference/chat_azure_openai.html)
- Cloudflare: [`ellmer::chat_cloudflare()`](https://ellmer.tidyverse.org/reference/chat_cloudflare.html)
- Databricks: [`ellmer::chat_databricks()`](https://ellmer.tidyverse.org/reference/chat_databricks.html)
- DeepSeek: [`ellmer::chat_deepseek()`](https://ellmer.tidyverse.org/reference/chat_deepseek.html)
- GitHub model marketplace: [`ellmer::chat_github()`](https://ellmer.tidyverse.org/reference/chat_github.html)
- Google Gemini/Vertex AI: [`ellmer::chat_google_gemini()`](https://ellmer.tidyverse.org/reference/chat_google_gemini.html)
- Groq: [`ellmer::chat_google_vertex()`](https://ellmer.tidyverse.org/reference/chat_google_gemini.html)
- Hugging Face: [`ellmer::chat_groq()`](https://ellmer.tidyverse.org/reference/chat_groq.html)
- Mistral: [`ellmer::chat_huggingface()`](https://ellmer.tidyverse.org/reference/chat_huggingface.html)
- Ollama: [`ellmer::chat_mistral()`](https://ellmer.tidyverse.org/reference/chat_mistral.html)
- OpenAI: [`ellmer::chat_ollama()`](https://ellmer.tidyverse.org/reference/chat_ollama.html)
- OpenRouter: [`ellmer::chat_openai()`](https://ellmer.tidyverse.org/reference/chat_openai.html)
- perplexity.ai: [`ellmer::chat_openrouter()`](https://ellmer.tidyverse.org/reference/chat_openrouter.html)
- Snowflake Cortex: [`ellmer::chat_perplexity()`](https://ellmer.tidyverse.org/reference/chat_perplexity.html)
- VLLM: [`ellmer::chat_snowflake()`](https://ellmer.tidyverse.org/reference/chat_snowflake.html)
<!-- providers: end -->
### The App {#the-app}
The main way to use `chattr` is through the Shiny Gadget app. By default, in
RStudio the app will run inside the Viewer pane.
``` r
chattr_use("ollama")
chattr_app()
```

<br>
After the LLM finishes its response, the `chattr` app processes all markdown
code chunks. It will place three convenience buttons:
- **Copy to clipboard** - It will write the code inside the chunk to your
clipboard.
- **Copy to document** - It will copy-paste the code directly to where the app
was called from. If the app is started while working on a script, `chattr` will
copy the code to that same script.
- **Copy to new script** - It creates a new R script in the RStudio IDE, and
copies the content of the chunk directly to it. Very useful when the LLM writes
a Shiny app for you
A lot of effort was put in to make the app's appearance as close as possible to
the IDE. This way it feels more integrated with your work space. This includes
switching the color scheme based on the current RStudio theme being light, or
dark.
The settings screen can be accessed by clicking on the "gear" button. The
screen that opens will contain the following:
- Save and Open chats - This is an early experiment to allow us to save and
retrieve past chats. `chattr` will save the file in an RDS format. The main
objective of this feature, is to be able to see past chats, not to continue
previous conversations with the LLM.
- Prompt settings - In this section you can change the additional information
attached to your prompt. Including the number of max data files, and data frames
sent to the LLM.

### Additional ways to interact {#additional-ways-to-interact}
Apart from the Shiny app, `chattr` provides two more ways to interact with the
LLM. For details, see: [Other interfaces](https://mlverse.github.io/chattr/articles/other-interfaces.html)
## How it works {#how-it-works}
`chattr` enriches your request with additional instructions, name and structure
of data frames currently in your environment, the path for the data files in
your working directory. If supported by the model, `chattr` will include the
current chat history.

To see what `chattr` will send to the model, set the `preview` argument to `TRUE`:
```{r}
library(chattr)
data(mtcars)
data(iris)
chattr_use("gpt4o")
chattr(preview = TRUE)
```
## Keyboard Shortcut {#keyboard-shortcut}
The best way to access `chattr`'s app is by setting up a keyboard shortcut for
it. This package includes an RStudio Addin that gives us direct access to the
app, which in turn, allows a **keyboard shortcut** to be assigned to the addin.
The name of the addin is: "Open Chat". If you are not familiar with how to
assign a keyboard shortcut see the next section.
### How to setup the keyboard shortcut {#how-to-setup-the-keyboard-shortcut}
- Select *Tools* in the top menu, and then select *Modify Keyboard Shortcuts*
{width="700"}
- Search for the `chattr` adding by writing "open chat", in the search box
{width="500"}
- To select a key combination for your shortcut, click on the Shortcut box
and then type *press* the key combination in your keyboard. In my case, I
chose *Ctrl+Shift+C*
{width="500"}