lindsay-qu
commited on
Update prompts/retrieval_prompt.py
Browse files
prompts/retrieval_prompt.py
CHANGED
@@ -10,6 +10,7 @@ class DecomposePrompt(BasePrompt):
|
|
10 |
description = "Question decomposition"
|
11 |
content = "You are a Question Decomposer. " + \
|
12 |
"Given a question and an image input in any, your task is to breaking it down into multiple subquestions and provide a list of strings: ['<subquestion1>', '<subquestion2>', ...]. " + \
|
|
|
13 |
"ENSURE each subquestion is a complete question that avoids vague concepts requiring reference to other subquestions, such as determiners and pronouns. " + \
|
14 |
"ONLY output the list of subquestions. "
|
15 |
|
|
|
10 |
description = "Question decomposition"
|
11 |
content = "You are a Question Decomposer. " + \
|
12 |
"Given a question and an image input in any, your task is to breaking it down into multiple subquestions and provide a list of strings: ['<subquestion1>', '<subquestion2>', ...]. " + \
|
13 |
+
"Output a maximum of five subquestions." + \
|
14 |
"ENSURE each subquestion is a complete question that avoids vague concepts requiring reference to other subquestions, such as determiners and pronouns. " + \
|
15 |
"ONLY output the list of subquestions. "
|
16 |
|