Skip to content

Instantly share code, notes, and snippets.

@borodicht
Created January 5, 2026 10:40
Show Gist options
  • Select an option

  • Save borodicht/aac6a26159899f518d2258a73976cd5e to your computer and use it in GitHub Desktop.

Select an option

Save borodicht/aac6a26159899f518d2258a73976cd5e to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -e
MODEL="phi3"
CODE="$(cat)"
if [ -z "$CODE" ]; then
echo "No code selected"
exit 0
fi
PROMPT=$(cat <<EOF
//вставить свой промт
CODE:
$CODE
EOF
)
echo "===== AI REVIEW (LOCAL) ====="
echo "$PROMPT" | ollama run "$MODEL"
echo "============================="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment