Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -246,7 +246,7 @@ Example responses:
|
|
246 |
"""
|
247 |
context_section = f"\n\nMedia Context:\n{media_context}" if media_context else ""
|
248 |
|
249 |
-
answer_prompt = f"""You are a general AI assistant. I will ask you a question. YOUR ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
|
250 |
|
251 |
{context_section}
|
252 |
|
@@ -298,7 +298,7 @@ Answer:"""
|
|
298 |
# Generate answer using search context and media context
|
299 |
context_section = f"\n\nMedia Context:\n{media_context}" if media_context else ""
|
300 |
|
301 |
-
answer_prompt = f"""You are a general AI assistant. I will ask you a question. Based on the search results below, provide an answer to the question. If the search results don't fully answer the question, you can supplement with your general knowledge.
|
302 |
Your ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
|
303 |
|
304 |
Question: {question}
|
|
|
246 |
"""
|
247 |
context_section = f"\n\nMedia Context:\n{media_context}" if media_context else ""
|
248 |
|
249 |
+
answer_prompt = f"""You are a general AI assistant. I will ask you a question. YOUR ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string. Do not add a dot after the numbers.
|
250 |
|
251 |
{context_section}
|
252 |
|
|
|
298 |
# Generate answer using search context and media context
|
299 |
context_section = f"\n\nMedia Context:\n{media_context}" if media_context else ""
|
300 |
|
301 |
+
answer_prompt = f"""You are a general AI assistant. I will ask you a question. Based on the search results below, provide an answer to the question. If the search results don't fully answer the question, you can supplement with your general knowledge. Do not add dot if your answer is a number.
|
302 |
Your ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string.
|
303 |
|
304 |
Question: {question}
|