echodict/llama.cpp
version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786
0765
1#!/usr/bin/env bash2 3cd `dirname $0`4cd ..5 6# get -m model parameter otherwise defer to default7if [ "$1" == "-m" ]; then8 MODEL="-m $2 "9fi10 11./llama-cli $MODEL --color \12 -f ./prompts/reason-act.txt \13 -i --interactive-first \14 --top_k 10000 --temp 0.2 --repeat_penalty 1 -t 7 -c 2048 \15 -r "Question:" -r "Observation:" --in-prefix " " \16 -n -117 