Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yiranwu0 committed Nov 20, 2024
1 parent d679c7e commit d1d6f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/agentchat/test_conversable_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def test_conversable_agent():
def test_generate_reply():
def add_num(num_to_be_added):
given_num = 10
return str(num_to_be_added + given_num)
return num_to_be_added + given_num

dummy_agent_2 = ConversableAgent(
name="user_proxy", llm_config=False, human_input_mode="TERMINATE", function_map={"add_num": add_num}
Expand Down

0 comments on commit d1d6f1c

Please sign in to comment.