Created
January 5, 2026 10:40
-
-
Save borodicht/cab523ab92ae8a4dfe4ae475f454e7c9 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
| #!/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