Skip to content

Commit 6c16acf

Browse files
authored
[Openvino code] Fix deepseek coder model run for fill-in-middle mode (#881)
* changed model location to open source * upgraded Openvino, optimum, optimum-intel versions
1 parent ac98424 commit 6c16acf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

modules/openvino_code/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/openvino_code/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"publisher": "OpenVINO",
33
"name": "openvino-code-completion",
4-
"version": "0.0.10",
4+
"version": "0.0.11",
55
"displayName": "OpenVINO Code Completion",
66
"description": "VSCode extension for AI code completion with OpenVINO",
77
"icon": "media/logo.png",

modules/openvino_code/server/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dependencies = [
1111
'torch @ https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp310-cp310-linux_x86_64.whl ; sys_platform=="linux" and python_version == "3.10"',
1212
'torch @ https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp311-cp311-linux_x86_64.whl ; sys_platform=="linux" and python_version == "3.11"',
1313
'torch ; sys_platform != "linux"',
14-
'openvino==2023.1.0',
14+
'openvino==2023.3.0',
1515
'transformers==4.36.0',
16-
'optimum==1.12.0',
17-
'optimum-intel[openvino]==1.10.1',
16+
'optimum==1.17.1',
17+
'optimum-intel[openvino]==1.15.0',
1818
]
1919

2020
[project.optional-dependencies]

modules/openvino_code/shared/model.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enum ModelId {
44
CODE_T5_220M = 'Salesforce/codet5p-220m-py',
55
DECICODER_1B_OPENVINO_INT8 = 'chgk13/decicoder-1b-openvino-int8',
66
STABLECODE_COMPLETION_ALPHA_3B_4K_OPENVINO_INT8 = 'chgk13/stablecode-completion-alpha-3b-4k-openvino-int8',
7-
DEEPSEEK_CODER_1_3B = 'Intel/deepseek-coder-1_3b-instruct-openvino-int8',
7+
DEEPSEEK_CODER_1_3B = 'kumarijy/deepseek-code-1.3b_base_ov_int8',
88
}
99

1010
export enum ModelName {

0 commit comments

Comments
 (0)