Skip to content

Commit a767693

Browse files
committed
autosave defaults to true
1 parent 29026a3 commit a767693

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

swarms/structs/concurrent_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(
8181
max_loops: int = 1,
8282
auto_generate_prompts: bool = False,
8383
show_dashboard: bool = False,
84-
autosave: bool = False,
84+
autosave: bool = True,
8585
verbose: bool = False,
8686
):
8787
self.id = id if id is not None else swarm_id()

swarms/structs/sequential_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(
5353
shared_memory_system: callable = None,
5454
multi_agent_collab_prompt: bool = False,
5555
team_awareness: bool = False,
56-
autosave: bool = False,
56+
autosave: bool = True,
5757
verbose: bool = False,
5858
*args,
5959
**kwargs,

0 commit comments

Comments
 (0)