Skip to content

Commit

Permalink
agents parameters default values
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihozturkh2o committed Sep 6, 2024
1 parent 52d0f14 commit 4e4b62a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
1 change: 0 additions & 1 deletion openai_server/agent_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ def run_autogen(query=None,
)
general_knowledge_agent = get_general_knowledge_agent(
llm_config=llm_config,
prompt=query,
autogen_max_consecutive_auto_reply=1, # Always 1 turn for general knowledge agent
)
code_group_chat_manager = get_code_group_chat_manager(
Expand Down
39 changes: 19 additions & 20 deletions openai_server/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@
from openai_server.agent_utils import in_pycharm
from openai_server.autogen_utils import H2OConversableAgent, H2OGroupChatManager

# TODO: Put default values for attributes if possible

def get_code_executor(
temp_dir,
autogen_run_code_in_docker: bool,
autogen_timeout: int,
autogen_system_site_packages: bool,
autogen_code_restrictions_level: int,
autogen_venv_dir,
autogen_run_code_in_docker: bool = False,
autogen_timeout: int = 60,
autogen_system_site_packages: bool = True,
autogen_code_restrictions_level: int = 2,
autogen_venv_dir: str | None = None,
) -> CodeExecutor:
if autogen_run_code_in_docker:
# Create a Docker command line code executor.
Expand Down Expand Up @@ -52,8 +50,8 @@ def get_code_executor(
return executor

def get_code_executor_agent(
executor,
autogen_max_consecutive_auto_reply: int,
executor: CodeExecutor,
autogen_max_consecutive_auto_reply: int = 1,
) -> H2OConversableAgent:
code_executor_agent = H2OConversableAgent(
name="code_executor_agent",
Expand All @@ -67,9 +65,9 @@ def get_code_executor_agent(
return code_executor_agent

def get_code_writer_agent(
code_writer_system_prompt:str,
llm_config:dict,
autogen_max_consecutive_auto_reply:int,
code_writer_system_prompt:str | None = None,
autogen_max_consecutive_auto_reply:int = 1,
) -> H2OConversableAgent:
from openai_server.autogen_utils import H2OConversableAgent
code_writer_agent = H2OConversableAgent(
Expand All @@ -86,8 +84,7 @@ def get_code_writer_agent(

def get_general_knowledge_agent(
llm_config:dict,
prompt:str,
autogen_max_consecutive_auto_reply:int,
autogen_max_consecutive_auto_reply:int = 1,
) -> H2OConversableAgent:
gk_system_message = "You answer the question or request provided with natural language only. You can not generate or execute codes. You can not talk to web. You are good at chatting. "
# TODO: Think about the Terminate procedure
Expand All @@ -108,7 +105,7 @@ def get_general_knowledge_agent(

def get_human_proxy_agent(
llm_config:dict,
autogen_max_consecutive_auto_reply:int,
autogen_max_consecutive_auto_reply:int = 1,
) -> H2OConversableAgent:
# Human Proxy
human_proxy_agent = H2OConversableAgent(
Expand All @@ -122,10 +119,10 @@ def get_human_proxy_agent(

def get_code_group_chat_manager(
llm_config:dict,
code_writer_system_prompt:str,
autogen_max_consecutive_auto_reply:int,
max_round:int,
executor,
executor:CodeExecutor,
code_writer_system_prompt:str | None = None,
autogen_max_consecutive_auto_reply:int = 1,
max_round:int = 10,
) -> H2OGroupChatManager:
"""
Returns a group chat manager for code writing and execution.
Expand Down Expand Up @@ -166,14 +163,16 @@ def group_terminate_flow(msg):
def get_main_group_chat_manager(
llm_config:dict,
prompt:str,
agents:list,
max_round:int,
agents:list[H2OConversableAgent] | None = None,
max_round:int = 10,
) -> H2OGroupChatManager:
"""
Returns Main Group Chat Manager to distribute the roles among the agents.
The main group chat manager can contain multiple agents.
Uses LLMs to select the next agent to play the role.
"""
if agents is None:
agents = []
select_speaker_message_template = (
"You are in a role play game. The following roles are available:"
"{roles}."
Expand Down

0 comments on commit 4e4b62a

Please sign in to comment.