diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-05 09:30:51 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-05 09:30:51 +0200 |
commit | 897e6dc1239be26db74a933d10325b86ae55e5fb (patch) | |
tree | 1b462d1ab3bb2a2b0fc134ba92d3af7da2d72a57 /continuedev | |
parent | db0c493850d73c9d05f96ce1c5a04fc318c77422 (diff) | |
parent | 99d0cf12dcd1481e719e78483fc7df080dc95954 (diff) | |
download | sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.gz sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.bz2 sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.zip |
addressing conflicts
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/README.md | 2 | ||||
-rw-r--r-- | continuedev/src/continuedev/core/sdk.py | 2 |
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) |