You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
750 B

# Ollama
3 years ago
A fast runtime for large language models, powered by [llama.cpp](https://github.com/ggerganov/llama.cpp).
> _Note: this project is a work in progress. Certain models that can be run with `ollama` are intended for research and/or non-commercial use only._
## Install
3 years ago
Using `pip`:
3 years ago
```
pip install ollama
3 years ago
```
Using `docker`:
```
docker run ollama/ollama
```
## Quickstart
To run a model, use `ollama run`:
```
ollama run orca-mini-3b
```
You can also run models from hugging face:
```
ollama run huggingface.co/TheBloke/orca_mini_3B-GGML
```
Or directly via downloaded model files:
```
ollama run ~/Downloads/orca-mini-13b.ggmlv3.q4_0.bin
```
## Documentation
- [Development](docs/development.md)
- [Python SDK](docs/python.md)