You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LLM’s flexibility, allows for it to adapt to the subject of your
53
56
data, and provide surprisingly accurate predictions. This saves the data
54
57
scientist the need to write and tune an NLP model.
55
58
56
59
In recent times, the capabilities of LLMs that can run locally in your
57
60
computer have increased dramatically. This means that these sort of
58
-
analysis can run in your machine with good accuracy. Additionally, it
59
-
makes it possible to take advantage of LLM’s at your institution, since
60
-
the data will not leave the corporate network.
61
+
analysis can run in your machine with good accuracy. It also makes it
62
+
possible to take advantage of LLMs at your institution, since the data
63
+
will not leave the corporate network. Additionally, LLM management and
64
+
integration platforms, such as [Ollama](https://ollama.com/), are now
65
+
very easy to setup and use. `mall` uses Ollama as to interact with local
66
+
LLMs.
67
+
68
+
The development version of `mall` lets you **use external LLMs such as
69
+
[OpenAI](https://openai.com/), [Gemini](https://gemini.google.com/) and
70
+
[Anthropic](https://www.anthropic.com/)**. In R, `mall` uses the
71
+
[`ellmer`](https://ellmer.tidyverse.org/index.html) package to integrate
72
+
with the external LLM, and the
73
+
[`chatlas`](https://posit-dev.github.io/chatlas/) package to integrate
74
+
in Python.
61
75
62
76
## Get started
63
77
@@ -99,6 +113,11 @@ reviews = data.reviews
99
113
reviews
100
114
```
101
115
116
+
/Users/edgar/Projects/mall/python/.venv/lib/python3.12/site-packages/pydantic/_internal/_fields.py:132: UserWarning: Field "model_format" in ContentToolResult has conflict with protected namespace "model_".
117
+
118
+
You may be able to resolve this warning by setting `model_config['protected_namespaces'] = ()`.
119
+
warnings.warn(
120
+
102
121
| review |
103
122
|----|
104
123
| "This has been the best TV I've ever used. Great screen, and sound." |
0 commit comments