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 | cb2d59b7485633baabfa1b13ddd7fc2c02c2148d (patch) | |
tree | 939b0600649b5cf4afca95731b679bcf8f1feff9 | |
parent | 096628f5486815fff7a0ee2c03651f5991c6c2b1 (diff) | |
download | sncontinue-cb2d59b7485633baabfa1b13ddd7fc2c02c2148d.tar.gz sncontinue-cb2d59b7485633baabfa1b13ddd7fc2c02c2148d.tar.bz2 sncontinue-cb2d59b7485633baabfa1b13ddd7fc2c02c2148d.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" |