summaryrefslogtreecommitdiff
path: root/scripts/sask
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-10-26 22:23:31 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-10-26 22:23:31 +0400
commitcb78290f31886fb1f9a5e7c2a764dda55a459e50 (patch)
tree72a2df0645405658d8590d4b8d7d87f1e099f596 /scripts/sask
parentf8d1bfbd0f27e0763cf75fcda58d010e346515ab (diff)
chore: split script installation into CLI and GUI sections
Diffstat (limited to 'scripts/sask')
-rwxr-xr-xscripts/sask15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/sask b/scripts/sask
deleted file mode 100755
index 1ea0f3f..0000000
--- a/scripts/sask
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-. slib
-
-check_program "ollama"
-
-if [ "${1}" = "-s" ]; then
- addition="answer in a short way:"
- shift
-fi
-
-question="${addition} ${@}"
-model="codellama"
-
-echo "${question}" | ollama run "${model}"