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)
- Host: GitHub
- URL: https://github.com/thomd/llm-cli-tools
- Owner: thomd
- Created: 2025-03-24T13:16:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-24T14:37:18.000Z (about 1 year ago)
- Last Synced: 2025-03-24T15:29:29.612Z (about 1 year ago)
- Topics: cli, llm, ollama
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```