CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 3d agoView on Hugging Face
0likes1.1kdownloads
reason-act.sh17 linesDownload Raw Back to examples
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