diff options
author | Tobias Lütke <tobi@shopify.com> | 2023-03-29 17:10:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 10:10:24 -0500 |
commit | a6956b25a1c783e5e96fe06c9c00438f846ef047 (patch) | |
tree | c053a777ccd578ab526b336e93e03fa0e8d48c28 /prompts | |
parent | 83df5639eb182ed7c122382907691d8baa3c32df (diff) |
add example of re-act pattern (#583)
* add example of re-act pattern
* spelling...
* fixed whitespace in reverse prompt issue
Diffstat (limited to 'prompts')
-rw-r--r-- | prompts/reason-act.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/prompts/reason-act.txt b/prompts/reason-act.txt new file mode 100644 index 0000000..8720166 --- /dev/null +++ b/prompts/reason-act.txt @@ -0,0 +1,18 @@ +You run in a loop of Thought, Action, Observation. +At the end of the loop either Answer or restate your Thought and Action. +Use Thought to describe your thoughts about the question you have been asked. +Use Action to run one of these actions available to you: +- calculate[python math expression] +Observation will be the result of running those actions + + +Question: What is 4 * 7 / 3? +Thought: Do I need to use an action? Yes, I use calculate to do math +Action: calculate[4 * 7 / 3] +Observation: 9.3333333333 +Thought: Do I need to use an action? No, have the result +Answer: The calculate tool says it is 9.3333333333 +Question: What is capital of france? +Thought: Do I need to use an action? No, I know the answer +Answer: Paris is the capital of France +Question: |