diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-02 00:11:12 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-02 00:11:12 -0700 |
commit | 017b37fc315cf05ec848cbaf300503bee6ffac8f (patch) | |
tree | 2869990a9cef1d5000c8a46ebb29df42cc7832ef | |
parent | 45bf86caae1ca1093820466e0bc41b8d0ed7fa66 (diff) | |
download | sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.tar.gz sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.tar.bz2 sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.zip |
docs update and fix default_config.py
-rw-r--r-- | continuedev/src/continuedev/libs/constants/default_config.py | 2 | ||||
-rw-r--r-- | docs/docs/troubleshooting.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/continuedev/src/continuedev/libs/constants/default_config.py b/continuedev/src/continuedev/libs/constants/default_config.py index ebdd0cb8..d10844c3 100644 --- a/continuedev/src/continuedev/libs/constants/default_config.py +++ b/continuedev/src/continuedev/libs/constants/default_config.py @@ -42,7 +42,7 @@ class CommitMessageStep(Step): # Ask the LLM to write a commit message, # and set it as the description of this step self.description = await sdk.models.default.complete( - f"\{diff\}\n\nWrite a short, specific (less than 50 chars) commit message about the above changes:") + f"{diff}\\n\\nWrite a short, specific (less than 50 chars) commit message about the above changes:") config = ContinueConfig( diff --git a/docs/docs/troubleshooting.md b/docs/docs/troubleshooting.md index 53cec3e4..52385855 100644 --- a/docs/docs/troubleshooting.md +++ b/docs/docs/troubleshooting.md @@ -31,9 +31,9 @@ If the above doesn't work, you can try to kill the server manually before reload 2. Enter `lsof -i :65432 | grep "(LISTEN)" | awk '{print $2}' | xargs kill -9` to kill the server running on port 65432. 3. Restart VS Code, and Continue will attempt to start a fresh server. -## Manually install Python requirements +## Delete `~/.continue` -Open any terminal and run `cd ~/.continue/server` to enter the Continue server directory, then `pip3 install -r requirements.txt` to install the requirements. Restarting VS Code should now correctly start the server. +To get a completely fresh install of Continue, you can delete the `~/.continue` directory. Note that this will delete your config file and all saved sessions and development data. ## Run the server manually |