summaryrefslogtreecommitdiff
path: root/server/continuedev/core
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-10-16 11:06:41 -0700
committerNate Sesti <sestinj@gmail.com>2023-10-16 11:06:41 -0700
commit4279b4f0455f72f2ff2b2e5f6dbbc89d260504a7 (patch)
tree327a93d150478ec2f4ebcd0d7a6356a3562724e1 /server/continuedev/core
parent7ec582b7ed91644c8ef71ea670ec958833225a04 (diff)
parent6ef8ae6d5ab7efb1e928ff6474b6ac7a804a34cc (diff)
downloadsncontinue-4279b4f0455f72f2ff2b2e5f6dbbc89d260504a7.tar.gz
sncontinue-4279b4f0455f72f2ff2b2e5f6dbbc89d260504a7.tar.bz2
sncontinue-4279b4f0455f72f2ff2b2e5f6dbbc89d260504a7.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'server/continuedev/core')
-rw-r--r--server/continuedev/core/sdk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/continuedev/core/sdk.py b/server/continuedev/core/sdk.py
index 408168f6..65ac9c58 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/continuedev/src/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/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)
)