gdms commited on
Commit
0575787
·
1 Parent(s): 89d8a0d
Files changed (2) hide show
  1. agent.py +1 -1
  2. prompts.py +1 -1
agent.py CHANGED
@@ -35,7 +35,7 @@ class Agent:
35
 
36
  print("--> Supervisor")
37
  self.supervisor = create_supervisor(
38
- model=init_chat_model(GPT_4_0_MINI_MODEL, temperature=0.4),
39
  agents=[self.web_search_agent, self.audio_agent],
40
  tools=[bird_video_count_tool,chess_image_to_fen_tool,chess_fen_get_best_next_move_tool,
41
  get_excel_columns_tool, calculate_excel_sum_by_columns_tool,execute_python_code_tool,
 
35
 
36
  print("--> Supervisor")
37
  self.supervisor = create_supervisor(
38
+ model=init_chat_model(GPT_4_0_MINI_MODEL, temperature=0.2),
39
  agents=[self.web_search_agent, self.audio_agent],
40
  tools=[bird_video_count_tool,chess_image_to_fen_tool,chess_fen_get_best_next_move_tool,
41
  get_excel_columns_tool, calculate_excel_sum_by_columns_tool,execute_python_code_tool,
prompts.py CHANGED
@@ -29,7 +29,7 @@ SUPERVISOR_PROMPT = (
29
  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.
30
  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.
31
  To assist in your task, you can supervise other agents who perform specific tasks that could not be handled by tools, since they require the processing of another LLM. Below, I will inform you about your assistants:
32
- - web_research_agent. Assign web research related tasks to this agent. Your internet research assistant should provide you with information, but it is not responsible for the answer. You as the supervisor should search for information, reason about it, and answer the questions. Do not forward the question, prepare the query that will be requested for research to increase the chance of a more targeted response
33
  - audio_agent. Assign audio related tasks to this agent. This agent can extract text from videos in files or on the internet.
34
  Assign work to one agent at a time, do not call agents in parallel.
35
  Priorize the use of tools and another agents to help in reasoning.
 
29
  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.
30
  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.
31
  To assist in your task, you can supervise other agents who perform specific tasks that could not be handled by tools, since they require the processing of another LLM. Below, I will inform you about your assistants:
32
+ - web_research_agent. Assign web research related tasks to this agent. Your internet research assistant should provide you with information, but it is not responsible for the answer. You as the supervisor should search for information, reason about it, and answer the questions.
33
  - audio_agent. Assign audio related tasks to this agent. This agent can extract text from videos in files or on the internet.
34
  Assign work to one agent at a time, do not call agents in parallel.
35
  Priorize the use of tools and another agents to help in reasoning.