An open API service indexing awesome lists of open source software.

https://github.com/thomd/llm-cli-tools

Some CLI Tools to support LLM Tools like llm(1) or ollama(1)
https://github.com/thomd/llm-cli-tools

cli llm ollama

Last synced: 20 days ago
JSON representation

Some CLI Tools to support LLM Tools like llm(1) or ollama(1)

Awesome Lists containing this project

README

          

# LLM CLI Tools

My collection of CLI tools which I use together with [llm](https://llm.datasette.io/en/stable/index.html) or [ollama](https://ollama.com).

## Setup

```
make
brew install bash-completion@2
```

## Tools

### chat

`chat` is a simple wrapper for `ollama` which prettifies markdown output and allows to set a default model.

```
chat
```

### ollama bash-completion

Bash completion script for the main `ollama` sub commands and the installed models when running `ollama run`.

### md

Prettify streaming markdown from `llm` or `ollama` with `md`

```
ollama run MODEL "what is a qbit?" | md
llm "What is a qbit?" | md
```