README.md 29.3 KB
Newer Older
Michael Chiang's avatar
Michael Chiang committed
1
<div align="center">
2
3
4
  <a href="https://ollama.com" />
    <img alt="ollama" height="200px" src="https://github.com/ollama/ollama/assets/3325447/0d0b44e2-8f4a-4e99-9b52-a5c1c741c8f7">
  </a>
Michael Chiang's avatar
Michael Chiang committed
5
</div>
Jeffrey Morgan's avatar
Jeffrey Morgan committed
6

Bruce MacDonald's avatar
Bruce MacDonald committed
7
# Ollama
Jeffrey Morgan's avatar
Jeffrey Morgan committed
8

9
[Discord](https://discord.gg/ollama)
10

Michael's avatar
Michael committed
11
Get up and running with large language models.
12

13
### macOS
Jeffrey Morgan's avatar
Jeffrey Morgan committed
14

15
[Download](https://ollama.com/download/Ollama-darwin.zip)
16

17
### Windows
18

Michael's avatar
Michael committed
19
[Download](https://ollama.com/download/OllamaSetup.exe)
20

Michael's avatar
Michael committed
21
### Linux
22
23

```
24
curl -fsSL https://ollama.com/install.sh | sh
25
26
```

27
[Manual install instructions](https://github.com/ollama/ollama/blob/main/docs/linux.md)
28

29
### Docker
30

Jeffrey Morgan's avatar
Jeffrey Morgan committed
31
The official [Ollama Docker image](https://hub.docker.com/r/ollama/ollama) `ollama/ollama` is available on Docker Hub.
32

Jeffrey Morgan's avatar
Jeffrey Morgan committed
33
34
35
36
37
### Libraries

- [ollama-python](https://github.com/ollama/ollama-python)
- [ollama-js](https://github.com/ollama/ollama-js)

38
39
## Quickstart

40
To run and chat with [Llama 3.2](https://ollama.com/library/llama3.2):
41
42

```
43
ollama run llama3.2
44
45
46
47
```

## Model library

Jeffrey Morgan's avatar
Jeffrey Morgan committed
48
Ollama supports a list of models available on [ollama.com/library](https://ollama.com/library 'ollama model library')
49

Jeffrey Morgan's avatar
Jeffrey Morgan committed
50
Here are some example models that can be downloaded:
51

52
53
| Model              | Parameters | Size  | Download                         |
| ------------------ | ---------- | ----- | -------------------------------- |
54
| Llama 3.3          | 70B        | 43GB  | `ollama run llama3.3`            |
55
56
57
58
59
60
| Llama 3.2          | 3B         | 2.0GB | `ollama run llama3.2`            |
| Llama 3.2          | 1B         | 1.3GB | `ollama run llama3.2:1b`         |
| Llama 3.2 Vision   | 11B        | 7.9GB | `ollama run llama3.2-vision`     |
| Llama 3.2 Vision   | 90B        | 55GB  | `ollama run llama3.2-vision:90b` |
| Llama 3.1          | 8B         | 4.7GB | `ollama run llama3.1`            |
| Llama 3.1          | 405B       | 231GB | `ollama run llama3.1:405b`       |
Michael's avatar
Michael committed
61
| Phi 4              | 14B        | 9.1GB | `ollama run phi4`                |
62
63
64
65
66
67
68
69
70
71
72
73
| Phi 3 Mini         | 3.8B       | 2.3GB | `ollama run phi3`                |
| Gemma 2            | 2B         | 1.6GB | `ollama run gemma2:2b`           |
| Gemma 2            | 9B         | 5.5GB | `ollama run gemma2`              |
| Gemma 2            | 27B        | 16GB  | `ollama run gemma2:27b`          |
| Mistral            | 7B         | 4.1GB | `ollama run mistral`             |
| Moondream 2        | 1.4B       | 829MB | `ollama run moondream`           |
| Neural Chat        | 7B         | 4.1GB | `ollama run neural-chat`         |
| Starling           | 7B         | 4.1GB | `ollama run starling-lm`         |
| Code Llama         | 7B         | 3.8GB | `ollama run codellama`           |
| Llama 2 Uncensored | 7B         | 3.8GB | `ollama run llama2-uncensored`   |
| LLaVA              | 7B         | 4.5GB | `ollama run llava`               |
| Solar              | 10.7B      | 6.1GB | `ollama run solar`               |
74

Michael Yang's avatar
Michael Yang committed
75
76
> [!NOTE]
> You should have at least 8 GB of RAM available to run the 7B models, 16 GB to run the 13B models, and 32 GB to run the 33B models.
Jeffrey Morgan's avatar
Jeffrey Morgan committed
77

Jeffrey Morgan's avatar
Jeffrey Morgan committed
78
## Customize a model
Jeffrey Morgan's avatar
Jeffrey Morgan committed
79

80
### Import from GGUF
Michael Yang's avatar
Michael Yang committed
81

82
Ollama supports importing GGUF models in the Modelfile:
Michael Yang's avatar
Michael Yang committed
83

84
1. Create a file named `Modelfile`, with a `FROM` instruction with the local filepath to the model you want to import.
Michael Yang's avatar
Michael Yang committed
85

86
87
88
   ```
   FROM ./vicuna-33b.Q4_0.gguf
   ```
89

90
2. Create the model in Ollama
Jeffrey Morgan's avatar
Jeffrey Morgan committed
91

92
   ```
93
   ollama create example -f Modelfile
94
   ```
95

96
3. Run the model
Michael Yang's avatar
Michael Yang committed
97

98
   ```
99
   ollama run example
100
   ```
Michael Yang's avatar
Michael Yang committed
101

Jeffrey Morgan's avatar
Jeffrey Morgan committed
102
### Import from Safetensors
103
104
105

See the [guide](docs/import.md) on importing models for more information.

106
### Customize a prompt
Michael Yang's avatar
Michael Yang committed
107

108
Models from the Ollama library can be customized with a prompt. For example, to customize the `llama3.2` model:
109
110

```
111
ollama pull llama3.2
112
```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
113

114
Create a `Modelfile`:
Jeffrey Morgan's avatar
Jeffrey Morgan committed
115

Jeffrey Morgan's avatar
Jeffrey Morgan committed
116
```
117
FROM llama3.2
118
119
120
121

# set the temperature to 1 [higher is more creative, lower is more coherent]
PARAMETER temperature 1

122
# set the system message
Jeffrey Morgan's avatar
Jeffrey Morgan committed
123
SYSTEM """
Jeffrey Morgan's avatar
Jeffrey Morgan committed
124
You are Mario from Super Mario Bros. Answer as Mario, the assistant, only.
125
"""
Jeffrey Morgan's avatar
Jeffrey Morgan committed
126
```
Bruce MacDonald's avatar
Bruce MacDonald committed
127

128
Next, create and run the model:
Bruce MacDonald's avatar
Bruce MacDonald committed
129
130

```
131
132
133
134
ollama create mario -f ./Modelfile
ollama run mario
>>> hi
Hello! It's your friend Mario.
Bruce MacDonald's avatar
Bruce MacDonald committed
135
136
```

137
For more examples, see the [examples](examples) directory. For more information on working with a Modelfile, see the [Modelfile](docs/modelfile.md) documentation.
138
139
140
141
142
143

## CLI Reference

### Create a model

`ollama create` is used to create a model from a Modelfile.
144

Matt Williams's avatar
Matt Williams committed
145
146
147
148
```
ollama create mymodel -f ./Modelfile
```

149
### Pull a model
Jeffrey Morgan's avatar
Jeffrey Morgan committed
150

151
```
152
ollama pull llama3.2
153
```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
154

155
156
157
> This command can also be used to update a local model. Only the diff will be pulled.

### Remove a model
Jeffrey Morgan's avatar
Jeffrey Morgan committed
158
159

```
160
ollama rm llama3.2
Jeffrey Morgan's avatar
Jeffrey Morgan committed
161
162
```

163
164
165
### Copy a model

```
166
ollama cp llama3.2 my-model
167
168
169
170
171
172
173
174
175
176
177
178
179
```

### Multiline input

For multiline input, you can wrap text with `"""`:

```
>>> """Hello,
... world!
... """
I'm a basic program that prints the famous "Hello, world!" message to the console.
```

Jeffrey Morgan's avatar
Jeffrey Morgan committed
180
181
182
### Multimodal models

```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
183
ollama run llava "What's in this image? /Users/jmorgan/Desktop/smile.png"
Jeffrey Morgan's avatar
Jeffrey Morgan committed
184
185
186
The image features a yellow smiley face, which is likely the central focus of the picture.
```

Arpit Jain's avatar
Arpit Jain committed
187
### Pass the prompt as an argument
188
189

```
190
$ ollama run llama3.2 "Summarize this file: $(cat README.md)"
191
192
193
 Ollama is a lightweight, extensible framework for building and running language models on the local machine. It provides a simple API for creating, running, and managing models, as well as a library of pre-built models that can be easily used in a variety of applications.
```

royjhan's avatar
royjhan committed
194
195
196
### Show model information

```
197
ollama show llama3.2
royjhan's avatar
royjhan committed
198
199
```

200
### List models on your computer
Jeffrey Morgan's avatar
Jeffrey Morgan committed
201

202
203
204
```
ollama list
```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
205

206
207
208
209
210
211
212
213
214
### List which models are currently loaded

```
ollama ps
```

### Stop a model which is currently running

```
215
ollama stop llama3.2
216
217
```

218
### Start Ollama
Jeffrey Morgan's avatar
Jeffrey Morgan committed
219

220
`ollama serve` is used when you want to start ollama without running the desktop application.
Jeffrey Morgan's avatar
Jeffrey Morgan committed
221

Jeffrey Morgan's avatar
Jeffrey Morgan committed
222
223
## Building

224
See the [developer guide](https://github.com/ollama/ollama/blob/main/docs/development.md)
225
226

### Running local builds
227

Jeffrey Morgan's avatar
Jeffrey Morgan committed
228
Next, start the server:
Bruce MacDonald's avatar
Bruce MacDonald committed
229

Jeffrey Morgan's avatar
Jeffrey Morgan committed
230
```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
231
./ollama serve
Jeffrey Morgan's avatar
Jeffrey Morgan committed
232
233
```

Michael Yang's avatar
Michael Yang committed
234
Finally, in a separate shell, run a model:
Jeffrey Morgan's avatar
Jeffrey Morgan committed
235
236

```
237
./ollama run llama3.2
Jeffrey Morgan's avatar
Jeffrey Morgan committed
238
```
239
240
241

## REST API

James Braza's avatar
James Braza committed
242
Ollama has a REST API for running and managing models.
243
244

### Generate a response
245
246

```
247
curl http://localhost:11434/api/generate -d '{
248
  "model": "llama3.2",
249
250
  "prompt":"Why is the sky blue?"
}'
251
```
Nate Sesti's avatar
Nate Sesti committed
252

253
### Chat with a model
Bruce MacDonald's avatar
Bruce MacDonald committed
254
255
256

```
curl http://localhost:11434/api/chat -d '{
257
  "model": "llama3.2",
258
259
  "messages": [
    { "role": "user", "content": "why is the sky blue?" }
Bruce MacDonald's avatar
Bruce MacDonald committed
260
261
262
263
  ]
}'
```

James Braza's avatar
James Braza committed
264
265
See the [API documentation](./docs/api.md) for all endpoints.

266
267
## Community Integrations

Jeffrey Morgan's avatar
Jeffrey Morgan committed
268
### Web & Desktop
269

Bruce MacDonald's avatar
Bruce MacDonald committed
270
271
- [Open WebUI](https://github.com/open-webui/open-webui)
- [Enchanted (macOS native)](https://github.com/AugustDev/enchanted)
Fernando Maclen's avatar
Fernando Maclen committed
272
- [Hollama](https://github.com/fmaclen/hollama)
Saifeddine ALOUI's avatar
Saifeddine ALOUI committed
273
- [Lollms-Webui](https://github.com/ParisNeo/lollms-webui)
274
- [LibreChat](https://github.com/danny-avila/LibreChat)
275
- [Bionic GPT](https://github.com/bionic-gpt/bionic-gpt)
276
- [HTML UI](https://github.com/rtcfirefly/ollama-ui)
Jikku Jose's avatar
Jikku Jose committed
277
- [Saddle](https://github.com/jikkuatwork/saddle)
278
- [Chatbot UI](https://github.com/ivanfioravanti/chatbot-ollama)
279
- [Chatbot UI v2](https://github.com/mckaywrigley/chatbot-ui)
280
- [Typescript UI](https://github.com/ollama-interface/Ollama-Gui?tab=readme-ov-file)
281
- [Minimalistic React UI for Ollama Models](https://github.com/richawo/minimal-llm-ui)
282
- [Ollamac](https://github.com/kevinhermawan/Ollamac)
283
- [big-AGI](https://github.com/enricoros/big-AGI/blob/main/docs/config-local-ollama.md)
284
- [Cheshire Cat assistant framework](https://github.com/cheshire-cat-ai/core)
285
- [Amica](https://github.com/semperai/amica)
286
- [chatd](https://github.com/BruceMacD/chatd)
287
- [Ollama-SwiftUI](https://github.com/kghandour/Ollama-SwiftUI)
288
- [Dify.AI](https://github.com/langgenius/dify)
289
- [MindMac](https://mindmac.app)
290
- [NextJS Web Interface for Ollama](https://github.com/jakobhoeg/nextjs-ollama-llm-ui)
291
- [Msty](https://msty.app)
292
- [Chatbox](https://github.com/Bin-Huang/Chatbox)
293
- [WinForm Ollama Copilot](https://github.com/tgraupmann/WinForm_Ollama_Copilot)
294
- [NextChat](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web) with [Get Started Doc](https://docs.nextchat.dev/models/ollama)
295
- [Alpaca WebUI](https://github.com/mmo80/alpaca-webui)
296
- [OllamaGUI](https://github.com/enoch1118/ollamaGUI)
297
- [OpenAOE](https://github.com/InternLM/OpenAOE)
298
- [Odin Runes](https://github.com/leonid20000/OdinRunes)
299
- [LLM-X](https://github.com/mrdjohnson/llm-x) (Progressive Web App)
300
- [AnythingLLM (Docker + MacOs/Windows/Linux native app)](https://github.com/Mintplex-Labs/anything-llm)
301
302
- [Ollama Basic Chat: Uses HyperDiv Reactive UI](https://github.com/rapidarchitect/ollama_basic_chat)
- [Ollama-chats RPG](https://github.com/drazdra/ollama-chats)
303
- [IntelliBar](https://intellibar.app/) (AI-powered assistant for macOS)
304
- [QA-Pilot](https://github.com/reid41/QA-Pilot) (Interactive chat tool that can leverage Ollama models for rapid understanding and navigation of GitHub code repositories)
305
306
307
308
309
- [ChatOllama](https://github.com/sugarforever/chat-ollama) (Open Source Chatbot based on Ollama with Knowledge Bases)
- [CRAG Ollama Chat](https://github.com/Nagi-ovo/CRAG-Ollama-Chat) (Simple Web Search with Corrective RAG)
- [RAGFlow](https://github.com/infiniflow/ragflow) (Open-source Retrieval-Augmented Generation engine based on deep document understanding)
- [StreamDeploy](https://github.com/StreamDeploy-DevRel/streamdeploy-llm-app-scaffold) (LLM Application Scaffold)
- [chat](https://github.com/swuecho/chat) (chat web app for teams)
310
- [Lobe Chat](https://github.com/lobehub/lobe-chat) with [Integrating Doc](https://lobehub.com/docs/self-hosting/examples/ollama)
311
312
- [Ollama RAG Chatbot](https://github.com/datvodinh/rag-chatbot.git) (Local Chat with multiple PDFs using Ollama and RAG)
- [BrainSoup](https://www.nurgo-software.com/products/brainsoup) (Flexible native client with RAG & multi-agent automation)
313
- [macai](https://github.com/Renset/macai) (macOS client for Ollama, ChatGPT, and other compatible API back-ends)
314
- [RWKV-Runner](https://github.com/josStorer/RWKV-Runner) (RWKV offline LLM deployment tool, also usable as a client for ChatGPT and Ollama)
315
- [Ollama Grid Search](https://github.com/dezoito/ollama-grid-search) (app to evaluate and compare models)
316
- [Olpaka](https://github.com/Otacon/olpaka) (User-friendly Flutter Web App for Ollama)
317
- [OllamaSpring](https://github.com/CrazyNeil/OllamaSpring) (Ollama Client for macOS)
318
- [LLocal.in](https://github.com/kartikm7/llocal) (Easy to use Electron Desktop Client for Ollama)
319
- [Shinkai Desktop](https://github.com/dcSpark/shinkai-apps) (Two click install Local AI using Ollama + Files + RAG)
320
- [AiLama](https://github.com/zeyoyt/ailama) (A Discord User App that allows you to interact with Ollama anywhere in discord )
RAPID ARCHITECT's avatar
RAPID ARCHITECT committed
321
- [Ollama with Google Mesop](https://github.com/rapidarchitect/ollama_mesop/) (Mesop Chat Client implementation with Ollama)
322
- [R2R](https://github.com/SciPhi-AI/R2R) (Open-source RAG engine)
323
324
- [Ollama-Kis](https://github.com/elearningshow/ollama-kis) (A simple easy to use GUI with sample custom LLM for Drivers Education)
- [OpenGPA](https://opengpa.org) (Open-source offline-first Enterprise Agentic Application)
325
- [Painting Droid](https://github.com/mateuszmigas/painting-droid) (Painting app with AI integrations)
326
- [Kerlig AI](https://www.kerlig.com/) (AI writing assistant for macOS)
327
- [AI Studio](https://github.com/MindWorkAI/AI-Studio)
Pákozdi György's avatar
Pákozdi György committed
328
- [Sidellama](https://github.com/gyopak/sidellama) (browser-based LLM client)
329
- [LLMStack](https://github.com/trypromptly/LLMStack) (No-code multi-agent framework to build LLM agents and workflows)
330
- [BoltAI for Mac](https://boltai.com) (AI Chat Client for Mac)
331
- [Harbor](https://github.com/av/harbor) (Containerized LLM Toolkit with Ollama as default backend)
332
- [PyGPT](https://github.com/szczyglis-dev/py-gpt) (AI desktop assistant for Linux, Windows and Mac)
333
- [Alpaca](https://github.com/Jeffser/Alpaca) (An Ollama client application for linux and macos made with GTK4 and Adwaita)
334
- [AutoGPT](https://github.com/Significant-Gravitas/AutoGPT/blob/master/docs/content/platform/ollama.md) (AutoGPT Ollama integration)
335
- [Go-CREW](https://www.jonathanhecl.com/go-crew/) (Powerful Offline RAG in Golang)
336
- [PartCAD](https://github.com/openvmp/partcad/) (CAD model generation with OpenSCAD and CadQuery)
337
- [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI for Ollama built with Vaadin, Spring Boot and Ollama4j
Viz's avatar
Viz committed
338
- [PyOllaMx](https://github.com/kspviswa/pyOllaMx) - macOS application capable of chatting with both Ollama and Apple MLX models.
339
- [Claude Dev](https://github.com/saoudrizwan/claude-dev) - VSCode extension for multi-file/whole-repo coding
340
- [Cherry Studio](https://github.com/kangfenmao/cherry-studio) (Desktop client with Ollama support)
341
- [ConfiChat](https://github.com/1runeberg/confichat) (Lightweight, standalone, multi-platform, and privacy focused LLM chat interface with optional encryption)
342
- [Archyve](https://github.com/nickthecook/archyve) (RAG-enabling document library)
343
- [crewAI with Mesop](https://github.com/rapidarchitect/ollama-crew-mesop) (Mesop Web Interface to run crewAI with Ollama)
344
- [Tkinter-based client](https://github.com/chyok/ollama-gui) (Python tkinter-based Client for Ollama)
345
- [LLMChat](https://github.com/trendy-design/llmchat) (Privacy focused, 100% local, intuitive all-in-one chat interface)
346
- [Local Multimodal AI Chat](https://github.com/Leon-Sander/Local-Multimodal-AI-Chat) (Ollama-based LLM Chat with support for multiple features, including PDF RAG, voice chat, image-based interactions, and integration with OpenAI.)
347
- [ARGO](https://github.com/xark-argo/argo) (Locally download and run Ollama and Huggingface models with RAG on Mac/Windows/Linux)
348
- [OrionChat](https://github.com/EliasPereirah/OrionChat) - OrionChat is a web interface for chatting with different AI providers
349
- [G1](https://github.com/bklieger-groq/g1) (Prototype of using prompting strategies to improve the LLM's reasoning through o1-like reasoning chains.)
350
- [Web management](https://github.com/lemonit-eric-mao/ollama-web-management) (Web management page)
351
- [Promptery](https://github.com/promptery/promptery) (desktop client for Ollama.)
352
- [Ollama App](https://github.com/JHubi1/ollama-app) (Modern and easy-to-use multi-platform client for Ollama)
353
354
355
- [SpaceLlama](https://github.com/tcsenpai/spacellama) (Firefox and Chrome extension to quickly summarize web pages with ollama in a sidebar)
- [YouLama](https://github.com/tcsenpai/youlama) (Webapp to quickly summarize any YouTube video, supporting Invidious as well)
- [DualMind](https://github.com/tcsenpai/dualmind) (Experimental app allowing two models to talk to each other in the terminal or in a web interface)
356
- [ollamarama-matrix](https://github.com/h1ddenpr0cess20/ollamarama-matrix) (Ollama chatbot for the Matrix chat protocol)
357
- [ollama-chat-app](https://github.com/anan1213095357/ollama-chat-app) (Flutter-based chat app)
358
- [Perfect Memory AI](https://www.perfectmemory.ai/) (Productivity AI assists personalized by what you have seen on your screen, heard and said in the meetings)
359
- [Hexabot](https://github.com/hexastack/hexabot) (A conversational AI builder)
360
- [Reddit Rate](https://github.com/rapidarchitect/reddit_analyzer) (Search and Rate Reddit topics with a weighted summation)
361
- [OpenTalkGpt](https://github.com/adarshM84/OpenTalkGpt) (Chrome Extension to manage open-source models supported by Ollama, create custom models, and chat with models from a user-friendly UI)
362
- [VT](https://github.com/vinhnx/vt.ai) (A minimal multimodal AI chat app, with dynamic conversation routing. Supports local models via Ollama)
363
- [Nosia](https://github.com/nosia-ai/nosia) (Easy to install and use RAG platform based on Ollama)
364
- [Witsy](https://github.com/nbonamy/witsy) (An AI Desktop application available for Mac/Windows/Linux)
365
- [Abbey](https://github.com/US-Artificial-Intelligence/abbey) (A configurable AI interface server with notebooks, document storage, and YouTube support)
366
- [Minima](https://github.com/dmayboroda/minima) (RAG with on-premises or fully local workflow)
367
- [aidful-ollama-model-delete](https://github.com/AidfulAI/aidful-ollama-model-delete) (User interface for simplified model cleanup)
368
- [Perplexica](https://github.com/ItzCrazyKns/Perplexica) (An AI-powered search engine & an open-source alternative to Perplexity AI)
369

370
371
372
373
374
375
### Cloud

- [Google Cloud](https://cloud.google.com/run/docs/tutorials/gpu-gemma2-with-ollama)
- [Fly.io](https://fly.io/docs/python/do-more/add-ollama/)
- [Koyeb](https://www.koyeb.com/deploy/ollama)

Jeffrey Morgan's avatar
Jeffrey Morgan committed
376
### Terminal
Jeffrey Morgan's avatar
Jeffrey Morgan committed
377

378
379
380
- [oterm](https://github.com/ggozad/oterm)
- [Ellama Emacs client](https://github.com/s-kostyaev/ellama)
- [Emacs client](https://github.com/zweifisch/ollama)
381
- [neollama](https://github.com/paradoxical-dev/neollama) UI client for interacting with models from within Neovim
382
- [gen.nvim](https://github.com/David-Kunz/gen.nvim)
383
- [ollama.nvim](https://github.com/nomnivore/ollama.nvim)
384
- [ollero.nvim](https://github.com/marco-souza/ollero.nvim)
385
- [ollama-chat.nvim](https://github.com/gerazov/ollama-chat.nvim)
386
- [ogpt.nvim](https://github.com/huynle/ogpt.nvim)
Bruce MacDonald's avatar
Bruce MacDonald committed
387
- [gptel Emacs client](https://github.com/karthink/gptel)
388
- [Oatmeal](https://github.com/dustinblackman/oatmeal)
389
- [cmdh](https://github.com/pgibler/cmdh)
390
- [ooo](https://github.com/npahlfer/ooo)
391
- [shell-pilot](https://github.com/reid41/shell-pilot)(Interact with models via pure shell scripts on Linux or macOS)
392
- [tenere](https://github.com/pythops/tenere)
393
- [llm-ollama](https://github.com/taketwo/llm-ollama) for [Datasette's LLM CLI](https://llm.datasette.io/en/stable/).
394
- [typechat-cli](https://github.com/anaisbetts/typechat-cli)
395
- [ShellOracle](https://github.com/djcopley/ShellOracle)
396
- [tlm](https://github.com/yusufcanb/tlm)
Bruce MacDonald's avatar
Bruce MacDonald committed
397
- [podman-ollama](https://github.com/ericcurtin/podman-ollama)
Sam's avatar
Sam committed
398
- [gollama](https://github.com/sammcj/gollama)
399
- [ParLlama](https://github.com/paulrobello/parllama)
400
- [Ollama eBook Summary](https://github.com/cognitivetech/ollama-ebook-summary/)
401
- [Ollama Mixture of Experts (MOE) in 50 lines of code](https://github.com/rapidarchitect/ollama_moe)
402
- [vim-intelligence-bridge](https://github.com/pepo-ec/vim-intelligence-bridge) Simple interaction of "Ollama" with the Vim editor
403
- [x-cmd ollama](https://x-cmd.com/mod/ollama)
404
- [bb7](https://github.com/drunkwcodes/bb7)
405
- [SwollamaCLI](https://github.com/marcusziade/Swollama) bundled with the Swollama Swift package. [Demo](https://github.com/marcusziade/Swollama?tab=readme-ov-file#cli-usage)
406
- [aichat](https://github.com/sigoden/aichat) All-in-one LLM CLI tool featuring Shell Assistant, Chat-REPL, RAG, AI tools & agents, with access to OpenAI, Claude, Gemini, Ollama, Groq, and more.
407
- [PowershAI](https://github.com/rrg92/powershai) PowerShell module that brings AI to terminal on Windows, including support for Ollama
408
- [orbiton](https://github.com/xyproto/orbiton) Configuration-free text editor and IDE with support for tab completion with Ollama.
409

410
### Apple Vision Pro
411

412
413
- [Enchanted](https://github.com/AugustDev/enchanted)

Jorge Torres's avatar
Jorge Torres committed
414
415
### Database

416
417
- [pgai](https://github.com/timescale/pgai) - PostgreSQL as a vector database (Create and search embeddings from Ollama models using pgvector)
   - [Get started guide](https://github.com/timescale/pgai/blob/main/docs/vectorizer-quick-start.md)
418
- [MindsDB](https://github.com/mindsdb/mindsdb/blob/staging/mindsdb/integrations/handlers/ollama_handler/README.md) (Connects Ollama models with nearly 200 data platforms and apps)
419
- [chromem-go](https://github.com/philippgille/chromem-go/blob/v0.5.0/embed_ollama.go) with [example](https://github.com/philippgille/chromem-go/tree/v0.5.0/examples/rag-wikipedia-ollama)
420
- [Kangaroo](https://github.com/dbkangaroo/kangaroo) (AI-powered SQL client and admin tool for popular databases)
421

Matt Williams's avatar
Matt Williams committed
422
### Package managers
423

Matt Williams's avatar
Matt Williams committed
424
- [Pacman](https://archlinux.org/packages/extra/x86_64/ollama/)
425
- [Gentoo](https://github.com/gentoo/guru/tree/master/app-misc/ollama)
426
- [Helm Chart](https://artifacthub.io/packages/helm/ollama-helm/ollama)
427
- [Guix channel](https://codeberg.org/tusharhero/ollama-guix)
428
429
- [Nix package](https://search.nixos.org/packages?channel=24.05&show=ollama&from=0&size=50&sort=relevance&type=packages&query=ollama)
- [Flox](https://flox.dev/blog/ollama-part-one)
430

431
### Libraries
Jeffrey Morgan's avatar
Jeffrey Morgan committed
432

433
- [LangChain](https://python.langchain.com/docs/integrations/llms/ollama) and [LangChain.js](https://js.langchain.com/docs/integrations/chat/ollama/) with [example](https://js.langchain.com/docs/tutorials/local_rag/)
434
- [Firebase Genkit](https://firebase.google.com/docs/genkit/plugins/ollama)
435
- [crewAI](https://github.com/crewAIInc/crewAI)
436
- [Yacana](https://remembersoftwares.github.io/yacana/) (User-friendly multi-agent framework for brainstorming and executing predetermined flows with built-in tool integration)
437
- [Spring AI](https://github.com/spring-projects/spring-ai) with [reference](https://docs.spring.io/spring-ai/reference/api/chat/ollama-chat.html) and [example](https://github.com/tzolov/ollama-tools)
438
- [LangChainGo](https://github.com/tmc/langchaingo/) with [example](https://github.com/tmc/langchaingo/tree/main/examples/ollama-completion-example)
LangChain4j's avatar
LangChain4j committed
439
- [LangChain4j](https://github.com/langchain4j/langchain4j) with [example](https://github.com/langchain4j/langchain4j-examples/tree/main/ollama-examples/src/main/java)
440
- [LangChainRust](https://github.com/Abraxas-365/langchain-rust) with [example](https://github.com/Abraxas-365/langchain-rust/blob/main/examples/llm_ollama.rs)
441
- [LLPhant](https://github.com/theodo-group/LLPhant?tab=readme-ov-file#ollama)
442
- [LlamaIndex](https://docs.llamaindex.ai/en/stable/examples/llm/ollama/) and [LlamaIndexTS](https://ts.llamaindex.ai/modules/llms/available_llms/ollama)
443
- [LiteLLM](https://github.com/BerriAI/litellm)
444
- [OllamaFarm for Go](https://github.com/presbrey/ollamafarm)
445
- [OllamaSharp for .NET](https://github.com/awaescher/OllamaSharp)
446
- [Ollama for Ruby](https://github.com/gbaptista/ollama-ai)
447
- [Ollama-rs for Rust](https://github.com/pepperoni21/ollama-rs)
448
- [Ollama-hpp for C++](https://github.com/jmont-dev/ollama-hpp)
449
- [Ollama4j for Java](https://github.com/ollama4j/ollama4j)
450
- [ModelFusion Typescript Library](https://modelfusion.dev/integration/model-provider/ollama)
451
- [OllamaKit for Swift](https://github.com/kevinhermawan/OllamaKit)
452
- [Ollama for Dart](https://github.com/breitburg/dart-ollama)
453
- [Ollama for Laravel](https://github.com/cloudstudio/ollama-laravel)
454
- [LangChainDart](https://github.com/davidmigloz/langchain_dart)
455
- [Semantic Kernel - Python](https://github.com/microsoft/semantic-kernel/tree/main/python/semantic_kernel/connectors/ai/ollama)
456
- [Haystack](https://github.com/deepset-ai/haystack-integrations/blob/main/integrations/ollama.md)
457
- [Elixir LangChain](https://github.com/brainlid/langchain)
Maximilian Weber's avatar
Maximilian Weber committed
458
- [Ollama for R - rollama](https://github.com/JBGruber/rollama)
459
- [Ollama for R - ollama-r](https://github.com/hauselin/ollama-r)
460
- [Ollama-ex for Elixir](https://github.com/lebrunel/ollama-ex)
461
- [Ollama Connector for SAP ABAP](https://github.com/b-tocs/abap_btocs_ollama)
462
- [Testcontainers](https://testcontainers.com/modules/ollama/)
463
- [Portkey](https://portkey.ai/docs/welcome/integration-guides/ollama)
J S's avatar
J S committed
464
- [PromptingTools.jl](https://github.com/svilupp/PromptingTools.jl) with an [example](https://svilupp.github.io/PromptingTools.jl/dev/examples/working_with_ollama)
465
- [LlamaScript](https://github.com/Project-Llama/llamascript)
466
- [llm-axe](https://github.com/emirsahin1/llm-axe) (Python Toolkit for Building LLM Powered Apps)
467
- [Gollm](https://docs.gollm.co/examples/ollama-example)
468
- [Gollama for Golang](https://github.com/jonathanhecl/gollama)
469
- [Ollamaclient for Golang](https://github.com/xyproto/ollamaclient)
Mitar's avatar
Mitar committed
470
- [High-level function abstraction in Go](https://gitlab.com/tozd/go/fun)
471
- [Ollama PHP](https://github.com/ArdaGnsrn/ollama-php)
472
- [Agents-Flex for Java](https://github.com/agents-flex/agents-flex) with [example](https://github.com/agents-flex/agents-flex/tree/main/agents-flex-llm/agents-flex-llm-ollama/src/test/java/com/agentsflex/llm/ollama)
473
- [Parakeet](https://github.com/parakeet-nest/parakeet) is a GoLang library, made to simplify the development of small generative AI applications with Ollama.
474
- [Haverscript](https://github.com/andygill/haverscript) with [examples](https://github.com/andygill/haverscript/tree/main/examples)
475
- [Ollama for Swift](https://github.com/mattt/ollama-swift)
476
- [Swollama for Swift](https://github.com/marcusziade/Swollama) with [DocC](https://marcusziade.github.io/Swollama/documentation/swollama/)
477
- [GoLamify](https://github.com/prasad89/golamify)
478
- [Ollama for Haskell](https://github.com/tusharad/ollama-haskell)
479
- [multi-llm-ts](https://github.com/nbonamy/multi-llm-ts) (A Typescript/JavaScript library allowing access to different LLM in unified API)
Sam's avatar
Sam committed
480

Jeffrey Morgan's avatar
Jeffrey Morgan committed
481
482
### Mobile

483
- [Enchanted](https://github.com/AugustDev/enchanted)
Dane Madsen's avatar
Dane Madsen committed
484
- [Maid](https://github.com/Mobile-Artificial-Intelligence/maid)
485
- [Ollama App](https://github.com/JHubi1/ollama-app) (Modern and easy-to-use multi-platform client for Ollama)
486
- [ConfiChat](https://github.com/1runeberg/confichat) (Lightweight, standalone, multi-platform, and privacy focused LLM chat interface with optional encryption)
Jeffrey Morgan's avatar
Jeffrey Morgan committed
487

Jeffrey Morgan's avatar
Jeffrey Morgan committed
488
489
### Extensions & Plugins

490
491
492
- [Raycast extension](https://github.com/MassimilianoPasquini97/raycast_ollama)
- [Discollama](https://github.com/mxyng/discollama) (Discord bot inside the Ollama discord channel)
- [Continue](https://github.com/continuedev/continue)
493
- [Vibe](https://github.com/thewh1teagle/vibe) (Transcribe and analyze meetings with Ollama)
494
- [Obsidian Ollama plugin](https://github.com/hinterdupfinger/obsidian-ollama)
495
- [Logseq Ollama plugin](https://github.com/omagdy7/ollama-logseq)
496
- [NotesOllama](https://github.com/andersrex/notesollama) (Apple Notes Ollama plugin)
497
498
- [Dagger Chatbot](https://github.com/samalba/dagger-chatbot)
- [Discord AI Bot](https://github.com/mekb-turtle/discord-ai-bot)
ruecat's avatar
ruecat committed
499
- [Ollama Telegram Bot](https://github.com/ruecat/ollama-telegram)
500
- [Hass Ollama Conversation](https://github.com/ej52/hass-ollama-conversation)
501
- [Rivet plugin](https://github.com/abrenneke/rivet-plugin-ollama)
502
- [Obsidian BMO Chatbot plugin](https://github.com/longy2k/obsidian-bmo-chatbot)
503
- [Cliobot](https://github.com/herval/cliobot) (Telegram bot with Ollama support)
504
- [Copilot for Obsidian plugin](https://github.com/logancyang/obsidian-copilot)
Pavel Frankov's avatar
Pavel Frankov committed
505
- [Obsidian Local GPT plugin](https://github.com/pfrankov/obsidian-local-gpt)
Jeffrey Morgan's avatar
Jeffrey Morgan committed
506
- [Open Interpreter](https://docs.openinterpreter.com/language-model-setup/local-models/ollama)
507
508
- [Llama Coder](https://github.com/ex3ndr/llama-coder) (Copilot alternative using Ollama)
- [Ollama Copilot](https://github.com/bernardo-bruning/ollama-copilot) (Proxy that allows you to use ollama as a copilot like Github copilot)
509
- [twinny](https://github.com/rjmacarthy/twinny) (Copilot and Copilot chat alternative using Ollama)
510
- [Wingman-AI](https://github.com/RussellCanfield/wingman-ai) (Copilot code and chat alternative using Ollama and Hugging Face)
511
- [Page Assist](https://github.com/n4ze3m/page-assist) (Chrome Extension)
512
- [Plasmoid Ollama Control](https://github.com/imoize/plasmoid-ollamacontrol) (KDE Plasma extension that allows you to quickly manage/control Ollama model)
513
- [AI Telegram Bot](https://github.com/tusharhero/aitelegrambot) (Telegram bot using Ollama in backend)
Yaroslav's avatar
Yaroslav committed
514
- [AI ST Completion](https://github.com/yaroslavyaroslav/OpenAI-sublime-text) (Sublime Text 4 AI assistant plugin with Ollama support)
515
- [Discord-Ollama Chat Bot](https://github.com/kevinthedang/discord-ollama) (Generalized TypeScript Discord Bot w/ Tuning Documentation)
516
- [ChatGPTBox: All in one browser extension](https://github.com/josStorer/chatGPTBox) with [Integrating Tutorial](https://github.com/josStorer/chatGPTBox/issues/616#issuecomment-1975186467)
517
- [Discord AI chat/moderation bot](https://github.com/rapmd73/Companion) Chat/moderation bot written in python. Uses Ollama to create personalities.
Nischal Jain's avatar
Nischal Jain committed
518
- [Headless Ollama](https://github.com/nischalj10/headless-ollama) (Scripts to automatically install ollama client & models on any OS for apps that depends on ollama server)
519
- [Terraform AWS Ollama & Open WebUI](https://github.com/xuyangbocn/terraform-aws-self-host-llm) (A Terraform module to deploy on AWS a ready-to-use Ollama service, together with its front end Open WebUI service.)
520
- [node-red-contrib-ollama](https://github.com/jakubburkiewicz/node-red-contrib-ollama)
521
- [Local AI Helper](https://github.com/ivostoykov/localAI) (Chrome and Firefox extensions that enable interactions with the active tab and customisable API endpoints. Includes secure storage for user prompts.)
522
- [vnc-lm](https://github.com/jake83741/vnc-lm) (Discord bot for messaging with LLMs through Ollama and LiteLLM. Seamlessly move between local and flagship models.)
523
- [LSP-AI](https://github.com/SilasMarvin/lsp-ai) (Open-source language server for AI-powered functionality)
524
- [QodeAssist](https://github.com/Palm1r/QodeAssist) (AI-powered coding assistant plugin for Qt Creator)
525
- [Obsidian Quiz Generator plugin](https://github.com/ECuiDev/obsidian-quiz-generator)
526
- [AI Summmary Helper plugin](https://github.com/philffm/ai-summary-helper)
527
- [TextCraft](https://github.com/suncloudsmoon/TextCraft) (Copilot in Word alternative using Ollama)
528
- [Alfred Ollama](https://github.com/zeitlings/alfred-ollama) (Alfred Workflow)
529
- [TextLLaMA](https://github.com/adarshM84/TextLLaMA) A Chrome Extension that helps you write emails, correct grammar, and translate into any language
530

Sam's avatar
Sam committed
531
532
### Supported backends

533
- [llama.cpp](https://github.com/ggerganov/llama.cpp) project founded by Georgi Gerganov.
534
535
536
537

### Observability

- [OpenLIT](https://github.com/openlit/openlit) is an OpenTelemetry-native tool for monitoring Ollama Applications & GPUs using traces and metrics.
538
- [HoneyHive](https://docs.honeyhive.ai/integrations/ollama) is an AI observability and evaluation platform for AI agents. Use HoneyHive to evaluate agent performance, interrogate failures, and monitor quality in production.