#!/usr/bin/env bash # Convenience script to run the Ollama endpoint used by this project. # Override OLLAMA_HOST with the remote server if needed. export OLLAMA_HOST="${OLLAMA_HOST:-http://100.103.83.12:11435}" echo "Pulling models from ${OLLAMA_HOST}..." ollama pull glm-ocr ollama pull qwen2.5-vl:7b ollama pull qwen2.5-vl:3b echo "Ollama is ready at ${OLLAMA_HOST}"