From a6956b25a1c783e5e96fe06c9c00438f846ef047 Mon Sep 17 00:00:00 2001 From: Tobias Lütke Date: Wed, 29 Mar 2023 17:10:24 +0200 Subject: add example of re-act pattern (#583) * add example of re-act pattern * spelling... * fixed whitespace in reverse prompt issue --- examples/reason-act.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 examples/reason-act.sh (limited to 'examples') diff --git a/examples/reason-act.sh b/examples/reason-act.sh new file mode 100755 index 0000000..e7fe655 --- /dev/null +++ b/examples/reason-act.sh @@ -0,0 +1,17 @@ + +#!/bin/bash + +cd `dirname $0` +cd .. + +# get -m model parameter otherwise defer to default +if [ "$1" == "-m" ]; then + MODEL="-m $2 " +fi + +./main $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 -- cgit v1.2.3