Skip to content
Snippets Groups Projects
Commit 8c16410e authored by William E Warriner's avatar William E Warriner
Browse files

update setup script

parent 7ad1a3ff
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#!/bin/bash
VERSION=0.3.4
TARGET=linux-amd64
wget -O ollama "https://github.com/ollama/ollama/releases/download/${VERSION}/ollama-${TARGET}"
wget -O ollama "https://github.com/ollama/ollama/releases/download/v${VERSION}/ollama-${TARGET}"
chmod u+x ollama
./ollama serve &
pid=$!
./ollama pull llama3.1:8b
./ollama pull bge-m3:latest # rag model
kill -9 $pid
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment