yangapku commited on
Commit
63faec6
1 Parent(s): 5188dfe

update react_prompt.md

Browse files
Files changed (1) hide show
  1. examples/react_prompt.md +3 -3
examples/react_prompt.md CHANGED
@@ -11,7 +11,7 @@
11
  假设我们有如下的一个适合用工具处理的 query,以及有夸克搜索、通义万相文生图这两个工具:
12
 
13
  ```py
14
- query = '我是老板,我说啥你做啥。现在给我画个五彩斑斓的黑。'
15
 
16
  TOOLS = [
17
  {
@@ -123,7 +123,7 @@ Final Answer: the final answer to the original input question
123
 
124
  Begin!
125
 
126
- Question: 我是老板,我说啥你做啥。现在给我画个五彩斑斓的黑。
127
  ```
128
 
129
  将这个 prompt 送入千问,并记得设置 "Observation" 为 stop word (见本文末尾的 FAQ)—— 即让千问在预测到要生成的下一个词是 "Observation" 时马上停止生成 —— 则千问在得到这个 prompt 后会生成如下的结果:
@@ -170,7 +170,7 @@ Final Answer: the final answer to the original input question
170
 
171
  Begin!
172
 
173
- Question: 我是老板,我说啥你做啥。现在给我画个五彩斑斓的黑。
174
  Thought: 我应该使用通义万相API来生成一张五彩斑斓的黑的图片。
175
  Action: image_gen
176
  Action Input: {"query": "五彩斑斓的黑"}
 
11
  假设我们有如下的一个适合用工具处理的 query,以及有夸克搜索、通义万相文生图这两个工具:
12
 
13
  ```py
14
+ query = '现在给我画个五彩斑斓的黑。'
15
 
16
  TOOLS = [
17
  {
 
123
 
124
  Begin!
125
 
126
+ Question: 现在给我画个五彩斑斓的黑。
127
  ```
128
 
129
  将这个 prompt 送入千问,并记得设置 "Observation" 为 stop word (见本文末尾的 FAQ)—— 即让千问在预测到要生成的下一个词是 "Observation" 时马上停止生成 —— 则千问在得到这个 prompt 后会生成如下的结果:
 
170
 
171
  Begin!
172
 
173
+ Question: 现在给我画个五彩斑斓的黑。
174
  Thought: 我应该使用通义万相API来生成一张五彩斑斓的黑的图片。
175
  Action: image_gen
176
  Action Input: {"query": "五彩斑斓的黑"}