summaryrefslogtreecommitdiff
path: root/continuedev
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-05 09:30:51 +0200
committerTy Dunn <ty@tydunn.com>2023-06-05 09:30:51 +0200
commit65099504c45579707b0122d16f908feb3bad6c65 (patch)
treec3ea886502a2a32bd8dc576afb7115946a7ebe4b /continuedev
parentf61f8a6523e6f238e67dbe5600d6546642e2b7bf (diff)
parentd1ccdb83c546710f0438798bf67168be2cf65ca6 (diff)
downloadsncontinue-65099504c45579707b0122d16f908feb3bad6c65.tar.gz
sncontinue-65099504c45579707b0122d16f908feb3bad6c65.tar.bz2
sncontinue-65099504c45579707b0122d16f908feb3bad6c65.zip
addressing conflicts
Diffstat (limited to 'continuedev')
-rw-r--r--continuedev/README.md2
-rw-r--r--continuedev/src/continuedev/core/sdk.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/continuedev/README.md b/continuedev/README.md
index b7967ddd..911d467d 100644
--- a/continuedev/README.md
+++ b/continuedev/README.md
@@ -2,7 +2,7 @@
This package contains the [Continue](https://github.com/continuedev.com/continue) server and core classes needed to build your own recipes.
-Continue is a Python library for automating repetitive sequences of software development tasks using language models. Using our VS Code extension, you can build, run, and refine these recipes as they natively interact with your codebase. Read the docs [here](https://continuedev.netlify.app/) or download the VS Code extension [here](https://marketplace.visualstudio.com/items?itemName=Continue.continue).
+Continue is a Python library for automating repetitive sequences of software development tasks using language models. Using our VS Code extension, you can build, run, and refine these recipes as they natively interact with your codebase. Read the docs [here](https://continue.dev/docs) or download the VS Code extension [here](https://marketplace.visualstudio.com/items?itemName=Continue.continue).
## Continue Server
diff --git a/continuedev/src/continuedev/core/sdk.py b/continuedev/src/continuedev/core/sdk.py
index f9f3679e..8317a3d1 100644
--- a/continuedev/src/continuedev/core/sdk.py
+++ b/continuedev/src/continuedev/core/sdk.py
@@ -95,7 +95,7 @@ class ContinueSDK(AbstractContinueSDK):
async def add_file(self, filename: str, content: Union[str, None]):
filepath = await self._ensure_absolute_path(filename)
- return await self.run_step(FileSystemEditStep(edit=AddFile(filename=filename, content=content)))
+ return await self.run_step(FileSystemEditStep(edit=AddFile(filepath=filepath, content=content)))
async def delete_file(self, filename: str):
filepath = await self._ensure_absolute_path(filename)