Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…genai into at/static-llm-pipeline-dynamic-shape-model
  • Loading branch information
AsyaPronina committed Dec 24, 2024
2 parents b00d987 + 3496d45 commit ef82087
Show file tree
Hide file tree
Showing 256 changed files with 47,434 additions and 4,536 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install_python_deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ runs:
shell: bash
run: |
source ${{ inputs.ov_dir }}/setupvars.sh
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --pre --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
python -m pip install --upgrade-strategy eager -r ./samples/requirements.txt
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
python -m pip install -r ./samples/requirements.txt
4 changes: 4 additions & 0 deletions .github/actions/install_wheel/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lib/
dist/
node_modules/
coverage/
1 change: 1 addition & 0 deletions .github/actions/install_wheel/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.6.0
3 changes: 3 additions & 0 deletions .github/actions/install_wheel/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
node_modules/
coverage/
16 changes: 16 additions & 0 deletions .github/actions/install_wheel/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid",
"proseWrap": "always",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf"
}
22 changes: 22 additions & 0 deletions .github/actions/install_wheel/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Install Python Packages with Local Wheels and Extras'
description:
'Installs specified Python packages with support for local wheels and optional
extras.'
author: 'OpenVINO Developers'
inputs:
packages:
description:
"Semicolon-separated list of packages to install, e.g.,
'openvino;openvino_tokenizers[extra1,extra2]'"
required: true
requirements_files:
description:
"Semicolon-separated list of requirements.txt to install, e.g.,
'requirements.txt;requirements-dev.txt'"
required: false
local_wheel_dir:
description: 'Path to the directory containing local wheel files'
required: true
runs:
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit ef82087

Please sign in to comment.