diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-15 13:08:13 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-15 13:08:13 -0700 |
commit | 3e41ea694fc0890105cb9cc1b1d6dbde60b4766c (patch) | |
tree | 1947dbf455c5fb79fa873d05d93e2835d4685b60 | |
parent | a3945efec903b0f9a5ba770817a2dbb9e0d359aa (diff) | |
download | sncontinue-3e41ea694fc0890105cb9cc1b1d6dbde60b4766c.tar.gz sncontinue-3e41ea694fc0890105cb9cc1b1d6dbde60b4766c.tar.bz2 sncontinue-3e41ea694fc0890105cb9cc1b1d6dbde60b4766c.zip |
proxy_server_url and patch
-rw-r--r-- | continuedev/src/continuedev/libs/llm/proxy_server.py | 3 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/continuedev/src/continuedev/libs/llm/proxy_server.py b/continuedev/src/continuedev/libs/llm/proxy_server.py index f75788d2..4ff57101 100644 --- a/continuedev/src/continuedev/libs/llm/proxy_server.py +++ b/continuedev/src/continuedev/libs/llm/proxy_server.py @@ -16,7 +16,8 @@ CHAT_MODELS = { "gpt-3.5-turbo", "gpt-4" } -SERVER_URL = "http://127.0.0.1:8002" +# SERVER_URL = "http://127.0.0.1:8002" +SERVER_URL = "https://proxy-server-l6vsfbzhba-uc.a.run.app" class ProxyServer(LLM): diff --git a/extension/package-lock.json b/extension/package-lock.json index 5a62f6ad..e41cd2c2 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.39", + "version": "0.0.40", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.39", + "version": "0.0.40", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 4a0d9881..4b199420 100644 --- a/extension/package.json +++ b/extension/package.json @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "Refine code 10x faster", - "version": "0.0.39", + "version": "0.0.40", "publisher": "Continue", "engines": { "vscode": "^1.74.0" |