Skip to content

Instantly share code, notes, and snippets.

@sjorge
Created April 19, 2026 00:13
Show Gist options
  • Select an option

  • Save sjorge/8be32bf89e2a455533359925096edfa4 to your computer and use it in GitHub Desktop.

Select an option

Save sjorge/8be32bf89e2a455533359925096edfa4 to your computer and use it in GitHub Desktop.
#!/bin/sh
if ! curl -s http://localhost:11434/api/version > /dev/null; then
brew services restart ollama
fi
ollama="ollama --verbose --hidethinking --think="${2:-"false"}" --keepalive=5m run gemma4:e2b"
if [ -f "$1" ]; then
img="$(realpath "$1")"
$ollama "$img" "Translate this iamge to english, provide only the translation."
else
$ollama "Translate this to english, provide only the translation: $1"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment