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

https://github.com/aschaeffer/ollama-poc

POC: Run tinyllama in 15 minutes with Rust
https://github.com/aschaeffer/ollama-poc

ollama rust-lang tinyllama

Last synced: about 1 month ago
JSON representation

POC: Run tinyllama in 15 minutes with Rust

Awesome Lists containing this project

README

          

# ollama-poc

## Install ollama

```shell
curl -fsSL https://ollama.com/install.sh | sh
```

## Install and run tinyllama model

```shell
ollama run tinyllama
```

## Run

```shell
cargo run
```

## Use a custom prompt and/or custom model

```shell
cargo run --release -- --model tinyllama --prompt "What is ollama?"
```