Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 404 Bytes

File metadata and controls

30 lines (21 loc) · 404 Bytes

Setup Ollama with Llama 3

Install Ollama

  1. Download from https://ollama.ai/
  2. Install and start Ollama

Pull Llama 3 Model

ollama pull llama3

Start Ollama Server

ollama serve

Test Connection

curl http://localhost:11434/api/generate -d '{
  "model": "llama3",
  "prompt": "Hello",
  "stream": false
}'

Now you can run the data analyst assistant!