Skip to content

Commit

Permalink
Merge pull request EmergenceAI#71 from EmergenceAI/More-determinsitic…
Browse files Browse the repository at this point in the history
…-behavior

OpenAI call changes towards more deterministic responses
  • Loading branch information
teaxio authored Jul 3, 2024
2 parents b8bd612 + 0e76ead commit 896d23c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ae/core/agents/browser_nav_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def __init__(self, config_list, browser_nav_executor: autogen.UserProxyAgent): #
llm_config={
"config_list": config_list,
"cache_seed": None,
"temperature": 0.0
"temperature": 0.0,
"top_p": 0.001,
"seed":12345
},
)
self.__register_skills()
Expand Down
4 changes: 3 additions & 1 deletion ae/core/agents/high_level_planner_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ def __init__(self, config_list, user_proxy_agent:ConversableAgent): # type: igno
llm_config={
"config_list": config_list,
"cache_seed": None,
"temperature": 0.0
"temperature": 0.0,
"top_p": 0.001,
"seed":12345
},
)

Expand Down

0 comments on commit 896d23c

Please sign in to comment.