Skip to content

Commit

Permalink
[Openvino code] Fix deepseek coder model run for fill-in-middle mode (#…
Browse files Browse the repository at this point in the history
…881)

* changed model location to open source

* upgraded Openvino, optimum, optimum-intel versions
  • Loading branch information
kumarijy authored Feb 27, 2024
1 parent ac98424 commit 6c16acf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions modules/openvino_code/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/openvino_code/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"publisher": "OpenVINO",
"name": "openvino-code-completion",
"version": "0.0.10",
"version": "0.0.11",
"displayName": "OpenVINO Code Completion",
"description": "VSCode extension for AI code completion with OpenVINO",
"icon": "media/logo.png",
Expand Down
6 changes: 3 additions & 3 deletions modules/openvino_code/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ dependencies = [
'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"',
'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"',
'torch ; sys_platform != "linux"',
'openvino==2023.1.0',
'openvino==2023.3.0',
'transformers==4.36.0',
'optimum==1.12.0',
'optimum-intel[openvino]==1.10.1',
'optimum==1.17.1',
'optimum-intel[openvino]==1.15.0',
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion modules/openvino_code/shared/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enum ModelId {
CODE_T5_220M = 'Salesforce/codet5p-220m-py',
DECICODER_1B_OPENVINO_INT8 = 'chgk13/decicoder-1b-openvino-int8',
STABLECODE_COMPLETION_ALPHA_3B_4K_OPENVINO_INT8 = 'chgk13/stablecode-completion-alpha-3b-4k-openvino-int8',
DEEPSEEK_CODER_1_3B = 'Intel/deepseek-coder-1_3b-instruct-openvino-int8',
DEEPSEEK_CODER_1_3B = 'kumarijy/deepseek-code-1.3b_base_ov_int8',
}

export enum ModelName {
Expand Down

0 comments on commit 6c16acf

Please sign in to comment.