bstraehle commited on
Commit
6ee9937
·
verified ·
1 Parent(s): a5ab504

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +2 -0
multi_agent.py CHANGED
@@ -65,6 +65,8 @@ def run_multi_agent(llm, task):
65
  code_writer_agent = AssistantAgent(
66
  name="code_writer_agent",
67
  llm_config=llm_config,
 
 
68
  code_execution_config=False,
69
  human_input_mode="NEVER",
70
  )
 
65
  code_writer_agent = AssistantAgent(
66
  name="code_writer_agent",
67
  llm_config=llm_config,
68
+ system_message="You are a Sr. Python Programmer, an expert in writing Pylint-compliant code. "
69
+ "If needed, call get_today() to get today's date.",
70
  code_execution_config=False,
71
  human_input_mode="NEVER",
72
  )