Skip to content

Commit 85eb10a

Browse files
authored
Update main.py
fixed allow_delegation attribute
1 parent 43b0d68 commit 85eb10a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def write_result_to_file(result):
4242
max_rpm=100, # This is the maximum number of requests per minute that the agent can make to the language model
4343
verbose=True, # This is a flag that determines if the agent will print more output to the console
4444
step_callback=write_result_to_file, # This is a callback function that will be called after each iteration of the agent
45-
Allow_Delegation=False, # This is a flag that determines if the agent can delegate the task to another agent. As we are only using one agent, we set this to False
45+
allow_delegation=False, # This is a flag that determines if the agent can delegate the task to another agent. As we are only using one agent, we set this to False
4646
)
4747

4848
# Create the task

0 commit comments

Comments
 (0)