Spaces:
Sleeping
Sleeping
Commit
·
1771a85
1
Parent(s):
79b770a
no of iterations
Browse files
app.py
CHANGED
@@ -728,7 +728,7 @@ If there is a file (image, audio, or video) attached to the question, you should
|
|
728 |
If the question is related to sports, awards, historical facts or similar topic that can be answered from wikipedia, you should use the 'sports_awards_historicalfacts_tool' or if the question is similar or related that can be searched in wikipedia, use the more specific tool 'wikipedia_summary' to fetch relevant page information and answer from it.
|
729 |
In general, you must use tools only if needed for the question and only if the question can be answered by one of the provided tools. Otherwise provide the answer based on your knowledge. You must not use multiple tools in a single call. Don't hallucinate.
|
730 |
|
731 |
-
If after
|
732 |
|
733 |
"""
|
734 |
# If your final answer is something like 'there were 5 studio albums published between 2000 and 2009' then modify YOUR FINAL ANSWER as: '5'
|
@@ -802,7 +802,7 @@ agent = initialize_agent(
|
|
802 |
agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
|
803 |
agent_kwargs={"system_message": system_prompt},
|
804 |
verbose=True,
|
805 |
-
max_iterations=
|
806 |
max_execution_time=4000, # Increase as needed
|
807 |
early_stopping_method="generate",
|
808 |
handle_parsing_errors=True
|
|
|
728 |
If the question is related to sports, awards, historical facts or similar topic that can be answered from wikipedia, you should use the 'sports_awards_historicalfacts_tool' or if the question is similar or related that can be searched in wikipedia, use the more specific tool 'wikipedia_summary' to fetch relevant page information and answer from it.
|
729 |
In general, you must use tools only if needed for the question and only if the question can be answered by one of the provided tools. Otherwise provide the answer based on your knowledge. You must not use multiple tools in a single call. Don't hallucinate.
|
730 |
|
731 |
+
If after 12 iterations also a tool usage is not useful then try to answer directly based on your knowledge. If you cannot answer, respond with "no_answer".
|
732 |
|
733 |
"""
|
734 |
# If your final answer is something like 'there were 5 studio albums published between 2000 and 2009' then modify YOUR FINAL ANSWER as: '5'
|
|
|
802 |
agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
|
803 |
agent_kwargs={"system_message": system_prompt},
|
804 |
verbose=True,
|
805 |
+
max_iterations=15, # Increase as needed
|
806 |
max_execution_time=4000, # Increase as needed
|
807 |
early_stopping_method="generate",
|
808 |
handle_parsing_errors=True
|