Created
April 19, 2026 00:13
-
-
Save sjorge/8be32bf89e2a455533359925096edfa4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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