Felipe97/llama-cpp-compiled
01.1k
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 