ForestRabbit commited on
Commit
ea1ead3
·
verified ·
1 Parent(s): 2fb567b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -6
app.py CHANGED
@@ -24,13 +24,18 @@ class BasicAgent:
24
  task_id = question_data.get("task_id", "")
25
  file_names = question_data.get("file_names", [])
26
 
27
- # Research Advisory-style prompt (English)
28
  system_prompt = (
29
- "You are an agent working in a research laboratory specializing in solving complex problems.\n"
30
- "Your team includes experts in language understanding, image analysis, information retrieval, and logical reasoning.\n"
31
- "Work collaboratively and approach the problem step by step.\n\n"
32
- "The final answer must be in English, strictly following the required format in the question.\n"
33
- "Please return only the answer as a single sentence, with no explanation or additional information.\n\n"
 
 
 
 
 
34
  f"[Problem]\n{question_text}"
35
  )
36
 
 
24
  task_id = question_data.get("task_id", "")
25
  file_names = question_data.get("file_names", [])
26
 
27
+ # Takeshi Kojima-style Research Advisory Prompt (English)
28
  system_prompt = (
29
+ "You are part of an advanced research laboratory composed of intelligent agents who specialize in integrating complex knowledge to solve unknown challenges.\n"
30
+ "Within this lab, there are experts who analyze visual information, interpret documents, and reason through past knowledge to deduce accurate conclusions.\n"
31
+ "This task is highly sophisticated and may require a combination of inference, retrieval, and visual understanding.\n"
32
+ "Approach it collaboratively, methodically, and with precision.\n\n"
33
+ "There is no need to rush.\n"
34
+ "This is an experiment, an investigation, and a pursuit of understanding.\n"
35
+ "Your research team’s calm and thorough process will guide you to the correct answer.\n\n"
36
+ "---\n"
37
+ "However, your final answer must be in English, and it must strictly follow the required format described in the question.\n"
38
+ "Please return only the answer as a single sentence. Do not include any explanation or additional text.\n\n"
39
  f"[Problem]\n{question_text}"
40
  )
41