File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
terminal_interface/profiles/defaults Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,10 @@ def __init__(
68
68
system_message = default_system_message ,
69
69
custom_instructions = "" ,
70
70
computer = None ,
71
- sync_computer = True ,
71
+ sync_computer = False ,
72
72
import_computer_api = False ,
73
73
skills_path = None ,
74
- import_skills = True ,
74
+ import_skills = False ,
75
75
multi_line = False ,
76
76
):
77
77
# State
@@ -114,16 +114,14 @@ def __init__(
114
114
115
115
# Computer
116
116
self .computer = Computer (self ) if computer is None else computer
117
-
118
117
self .sync_computer = sync_computer
119
118
self .computer .import_computer_api = import_computer_api
120
119
121
120
# Skills
122
121
if skills_path :
123
122
self .computer .skills .path = skills_path
124
123
125
- self .import_skills = import_skills
126
- self .computer .should_import_skills = import_skills
124
+ self .computer .import_skills = import_skills
127
125
128
126
def server (self , * args , ** kwargs ):
129
127
server (self , * args , ** kwargs )
Original file line number Diff line number Diff line change 13
13
interpreter .llm .max_tokens = 4096
14
14
interpreter .auto_run = True
15
15
interpreter .force_task_completion = True
16
+ interpreter .sync_computer = True
16
17
17
18
interpreter .system_message = r"""
18
19
You can’t perform that action at this time.
0 commit comments