1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
import os
import traceback
from typing import Coroutine, List, Optional, Union
from ..libs.llm.base import LLM
from ..libs.util.devdata import dev_data_logger
from ..libs.util.logging import logger
from ..libs.util.paths import (
convertConfigImports,
getConfigFilePath,
getDiffsFolderPath,
)
from ..libs.util.telemetry import posthog_logger
from ..models.filesystem import RangeInFile
from ..models.filesystem_edit import (
AddDirectory,
AddFile,
DeleteDirectory,
DeleteFile,
FileEdit,
FileSystemEdit,
)
from ..models.main import Range
from ..server.ide_protocol import AbstractIdeProtocolServer
from .abstract_sdk import AbstractContinueSDK
from .config import ContinueConfig
from .lsp import ContinueLSPClient
from .main import (
ChatMessage,
Context,
ContinueCustomException,
History,
HistoryNode,
Step,
)
from .models import Models
from .observation import Observation
from .steps import (
DefaultModelEditCodeStep,
FileSystemEditStep,
MessageStep,
RangeInFileWithContents,
ShellCommandsStep,
WaitForUserConfirmationStep,
)
class Autopilot:
pass
class ContinueSDK(AbstractContinueSDK):
"""The SDK provided as parameters to a step"""
ide: AbstractIdeProtocolServer
models: Models
lsp: Optional[ContinueLSPClient] = None
context: Context
config: ContinueConfig
__autopilot: Autopilot
def __init__(self, autopilot: Autopilot):
self.ide = autopilot.ide
self.__autopilot = autopilot
self.context = autopilot.context
async def load(self, config: Optional[ContinueConfig] = None):
# Create necessary directories
getDiffsFolderPath()
try:
self.config = config or self._load_config_dot_py()
except Exception as e:
logger.error(f"Failed to load config.py: {traceback.format_exception(e)}")
self.config = (
ContinueConfig()
if self._last_valid_config is None
else self._last_valid_config
)
formatted_err = "\n".join(traceback.format_exception(e))
msg_step = MessageStep(
name="Invalid Continue Config File", message=formatted_err
)
msg_step.description = f"Falling back to default config settings due to the following error in `~/.continue/config.py`.\n```\n{formatted_err}\n```\n\nIt's possible this was caused by an update to the Continue config format. If you'd like to see the new recommended default `config.py`, check [here](https://github.com/continuedev/continue/blob/main/server/continuedev/libs/constants/default_config.py).\n\nIf the error is related to OpenAIServerInfo, see the updated way of using these parameters [here](https://continue.dev/docs/customization#azure-openai-service)."
self.history.add_node(
HistoryNode(step=msg_step, observation=None, depth=0, active=False)
)
await self.ide.setFileOpen(getConfigFilePath())
# Start models
self.models = self.config.models
await self.models.start(self)
# Start LSP
# async def start_lsp():
# try:
# sdk.lsp = ContinueLSPClient(
# workspace_dir=sdk.ide.workspace_directory,
# )
# await sdk.lsp.start()
# except Exception as e:
# logger.warning(f"Failed to start LSP client: {e}", exc_info=False)
# sdk.lsp = None
# create_async_task(
# start_lsp(), on_error=lambda e: logger.error("Failed to setup LSP: %s", e)
# )
# When the config is loaded, setup posthog logger
posthog_logger.setup(
self.ide.unique_id, self.config.allow_anonymous_telemetry, self.ide.ide_info
)
dev_data_logger.setup(self.config.user_token, self.config.data_server_url)
@classmethod
async def create(
cls, autopilot: Autopilot, config: Optional[ContinueConfig] = None
) -> "ContinueSDK":
sdk = ContinueSDK(autopilot)
autopilot.continue_sdk = sdk
await sdk.load(config=config)
return sdk
@property
def history(self) -> History:
return self.__autopilot.history
def write_log(self, message: str):
self.history.timeline[self.history.current_index].logs.append(message)
async def start_model(self, llm: LLM):
await llm.start(unique_id=self.ide.unique_id, write_log=self.write_log)
async def _ensure_absolute_path(self, path: str) -> str:
if os.path.isabs(path):
return path
# Else if in workspace
workspace_path = os.path.join(self.ide.workspace_directory, path)
if os.path.exists(workspace_path):
return workspace_path
else:
# Check if it matches any of the open files, then use that absolute path
open_files = await self.ide.getOpenFiles()
for open_file in open_files:
if os.path.basename(open_file) == os.path.basename(path):
return open_file
raise Exception(f"Path {path} does not exist")
async def run_step(self, step: Step) -> Coroutine[Observation, None, None]:
return await self.__autopilot._run_singular_step(step)
async def apply_filesystem_edit(
self, edit: FileSystemEdit, name: str = None, description: str = None
):
return await self.run_step(
FileSystemEditStep(
edit=edit, description=description, **({"name": name} if name else {})
)
)
async def wait_for_user_input(self) -> str:
return await self.__autopilot.wait_for_user_input()
async def wait_for_user_confirmation(self, prompt: str):
return await self.run_step(WaitForUserConfirmationStep(prompt=prompt))
async def run(
self,
commands: Union[List[str], str],
cwd: str = None,
name: str = None,
description: str = None,
handle_error: bool = True,
) -> Coroutine[str, None, None]:
commands = commands if isinstance(commands, List) else [commands]
return (
await self.run_step(
ShellCommandsStep(
cmds=commands,
cwd=cwd,
description=description,
handle_error=handle_error,
**({"name": name} if name else {}),
)
)
).text
async def edit_file(
self,
filename: str,
prompt: str,
name: str = None,
description: str = "",
range: Range = None,
):
filepath = await self._ensure_absolute_path(filename)
await self.ide.setFileOpen(filepath)
contents = await self.ide.readFile(filepath)
await self.run_step(
DefaultModelEditCodeStep(
range_in_files=[
RangeInFile(filepath=filepath, range=range)
if range is not None
else RangeInFile.from_entire_file(filepath, contents)
],
user_input=prompt,
description=description,
**({"name": name} if name else {}),
)
)
async def append_to_file(self, filename: str, content: str):
filepath = await self._ensure_absolute_path(filename)
previous_content = await self.ide.readFile(filepath)
file_edit = FileEdit.from_append(filepath, previous_content, content)
await self.ide.applyFileSystemEdit(file_edit)
async def add_file(self, filename: str, content: Union[str, None]):
filepath = await self._ensure_absolute_path(filename)
dir_name = os.path.dirname(filepath)
os.makedirs(dir_name, exist_ok=True)
return await self.run_step(
FileSystemEditStep(edit=AddFile(filepath=filepath, content=content))
)
async def delete_file(self, filename: str):
filename = await self._ensure_absolute_path(filename)
return await self.run_step(
FileSystemEditStep(edit=DeleteFile(filepath=filename))
)
async def add_directory(self, path: str):
path = await self._ensure_absolute_path(path)
return await self.run_step(FileSystemEditStep(edit=AddDirectory(path=path)))
async def delete_directory(self, path: str):
path = await self._ensure_absolute_path(path)
return await self.run_step(FileSystemEditStep(edit=DeleteDirectory(path=path)))
_last_valid_config: ContinueConfig = None
def _load_config_dot_py(self, retry: bool = True) -> ContinueConfig:
try:
path = getConfigFilePath()
config = ContinueConfig.from_filepath(path)
self._last_valid_config = config
logger.debug("Loaded Continue config file from %s", path)
return config
except ModuleNotFoundError as e:
if not retry:
raise e
# Check if the module was "continuedev.src"
if e.name == "continuedev.src":
convertConfigImports(shorten=True)
return self._load_config_dot_py(retry=False)
else:
raise e
def get_code_context(
self, only_editing: bool = False
) -> List[RangeInFileWithContents]:
highlighted_ranges = self.__autopilot.context_manager.context_providers[
"code"
].highlighted_ranges
context = (
list(filter(lambda x: x.item.editing, highlighted_ranges))
if only_editing
else highlighted_ranges
)
return [c.rif for c in context]
def set_loading_message(self, message: str):
# self.__autopilot.set_loading_message(message)
raise NotImplementedError()
def raise_exception(
self, message: str, title: str, with_step: Union[Step, None] = None
):
raise ContinueCustomException(message, title, with_step)
async def get_chat_context(self) -> List[ChatMessage]:
history_context = self.history.to_chat_history()
context_messages: List[
ChatMessage
] = await self.__autopilot.context_manager.get_chat_messages()
# Insert at the end, but don't insert after latest user message or function call
for msg in context_messages:
history_context.insert(-1, msg)
return history_context
async def update_ui(self):
await self.__autopilot.update_subscribers()
async def clear_history(self):
await self.__autopilot.clear_history()
def current_step_was_deleted(self):
return self.history.timeline[self.history.current_index].deleted
|