summaryrefslogtreecommitdiff
path: root/llama.cpp/examples/reason-act.sh
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/examples/reason-act.sh')
-rwxr-xr-xllama.cpp/examples/reason-act.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/llama.cpp/examples/reason-act.sh b/llama.cpp/examples/reason-act.sh
new file mode 100755
index 0000000..3c80192
--- /dev/null
+++ b/llama.cpp/examples/reason-act.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+
+cd `dirname $0`
+cd ..
+
+# get -m model parameter otherwise defer to default
+if [ "$1" == "-m" ]; then
+ MODEL="-m $2 "
+fi
+
+./llama-cli $MODEL --color \
+ -f ./prompts/reason-act.txt \
+ -i --interactive-first \
+ --top_k 10000 --temp 0.2 --repeat_penalty 1 -t 7 -c 2048 \
+ -r "Question:" -r "Observation:" --in-prefix " " \
+ -n -1