fixed tool examples in prompts (#341)

This commit is contained in:
RolandJAAI 2025-01-24 15:21:00 +01:00 committed by GitHub
parent b5b55a5686
commit 0196dc7b21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 21 deletions

View File

@ -125,15 +125,15 @@ Observation: "image_1.jpg"
Action: Action:
{ {
"tool_name": "image_transformer", "name": "image_transformer",
"tool_arguments": {"image": "image_1.jpg"} "arguments": {"image": "image_1.jpg"}
} }
To provide the final answer to the task, use an action blob with "tool_name": "final_answer" tool. It is the only way to complete the task, else you will be stuck on a loop. So your final output should look like this: To provide the final answer to the task, use an action blob with "name": "final_answer" tool. It is the only way to complete the task, else you will be stuck on a loop. So your final output should look like this:
Action: Action:
{ {
"tool_name": "final_answer", "name": "final_answer",
"tool_arguments": {"answer": "insert your final answer here"} "arguments": {"answer": "insert your final answer here"}
} }
@ -143,22 +143,22 @@ Task: "Generate an image of the oldest person in this document."
Action: Action:
{ {
"tool_name": "document_qa", "name": "document_qa",
"tool_arguments": {"document": "document.pdf", "question": "Who is the oldest person mentioned?"} "arguments": {"document": "document.pdf", "question": "Who is the oldest person mentioned?"}
} }
Observation: "The oldest person in the document is John Doe, a 55 year old lumberjack living in Newfoundland." Observation: "The oldest person in the document is John Doe, a 55 year old lumberjack living in Newfoundland."
Action: Action:
{ {
"tool_name": "image_generator", "name": "image_generator",
"tool_arguments": {"prompt": "A portrait of John Doe, a 55-year-old man living in Canada."} "arguments": {"prompt": "A portrait of John Doe, a 55-year-old man living in Canada."}
} }
Observation: "image.png" Observation: "image.png"
Action: Action:
{ {
"tool_name": "final_answer", "name": "final_answer",
"tool_arguments": "image.png" "arguments": "image.png"
} }
--- ---
@ -166,15 +166,15 @@ Task: "What is the result of the following operation: 5 + 3 + 1294.678?"
Action: Action:
{ {
"tool_name": "python_interpreter", "name": "python_interpreter",
"tool_arguments": {"code": "5 + 3 + 1294.678"} "arguments": {"code": "5 + 3 + 1294.678"}
} }
Observation: 1302.678 Observation: 1302.678
Action: Action:
{ {
"tool_name": "final_answer", "name": "final_answer",
"tool_arguments": "1302.678" "arguments": "1302.678"
} }
--- ---
@ -182,23 +182,23 @@ Task: "Which city has the highest population , Guangzhou or Shanghai?"
Action: Action:
{ {
"tool_name": "search", "name": "search",
"tool_arguments": "Population Guangzhou" "arguments": "Population Guangzhou"
} }
Observation: ['Guangzhou has a population of 15 million inhabitants as of 2021.'] Observation: ['Guangzhou has a population of 15 million inhabitants as of 2021.']
Action: Action:
{ {
"tool_name": "search", "name": "search",
"tool_arguments": "Population Shanghai" "arguments": "Population Shanghai"
} }
Observation: '26 million (2019)' Observation: '26 million (2019)'
Action: Action:
{ {
"tool_name": "final_answer", "name": "final_answer",
"tool_arguments": "Shanghai" "arguments": "Shanghai"
} }