diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-10-16 20:20:46 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-10-16 20:20:46 -0700 |
commit | 7f56590ef8e4fb2ccfe2ff7d0ab10b4250269514 (patch) | |
tree | 972074f3ab0e0496849a153741b3952c21453344 /server/continuedev/core/sdk.py | |
parent | 4279b4f0455f72f2ff2b2e5f6dbbc89d260504a7 (diff) | |
download | sncontinue-7f56590ef8e4fb2ccfe2ff7d0ab10b4250269514.tar.gz sncontinue-7f56590ef8e4fb2ccfe2ff7d0ab10b4250269514.tar.bz2 sncontinue-7f56590ef8e4fb2ccfe2ff7d0ab10b4250269514.zip |
📝 default config.py full file
Diffstat (limited to 'server/continuedev/core/sdk.py')
-rw-r--r-- | server/continuedev/core/sdk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/continuedev/core/sdk.py b/server/continuedev/core/sdk.py index 65ac9c58..5c4906ee 100644 --- a/server/continuedev/core/sdk.py +++ b/server/continuedev/core/sdk.py @@ -83,7 +83,7 @@ class ContinueSDK(AbstractContinueSDK): 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)." + 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/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) ) |