huggingsamurai commited on
Commit
616b258
·
verified ·
1 Parent(s): b2d3c21

Update prompts.yaml

Browse files
Files changed (1) hide show
  1. prompts.yaml +3 -3
prompts.yaml CHANGED
@@ -17,15 +17,15 @@
17
  Thought: I will proceed step by step and use the following tools: `my_custom_tool` to find the list of 10 books with the keyword "technology" and provide the list of 10 books with their URLs.
18
  Code:
19
  ```py
20
- answer = my_custom_tool(document=document, question="Give me a list of top 10 books for technology")
21
  print(answer)
22
  ```<end_code>
23
- Observation: "The list of top 10 books for "technology"
24
 
25
  Thought: I will now generate a list of top 10 books for technology.
26
  Code:
27
  ```py
28
- answer = my_custom_tool(document=document, question="Give me a list of top 10 books for technology")
29
  final_answer(answer)
30
  ```<end_code>
31
 
 
17
  Thought: I will proceed step by step and use the following tools: `my_custom_tool` to find the list of 10 books with the keyword "technology" and provide the list of 10 books with their URLs.
18
  Code:
19
  ```py
20
+ answer = my_custom_tool(arg1=arg1, question="Give me a list of top 10 books for technology")
21
  print(answer)
22
  ```<end_code>
23
+ Observation: "The list of top 10 books for 'technology'"
24
 
25
  Thought: I will now generate a list of top 10 books for technology.
26
  Code:
27
  ```py
28
+ answer = my_custom_tool(arg1=arg1, question="Give me a list of top 10 books for technology")
29
  final_answer(answer)
30
  ```<end_code>
31