Skip to content

Commit 04587f8

Browse files
authored
Merge branch 'master' into ea/llm_bench_vlm
2 parents 38f95e8 + c77f7c9 commit 04587f8

File tree

123 files changed

+40465
-1713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+40465
-1713
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
lib/
2+
dist/
3+
node_modules/
4+
coverage/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.6.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
node_modules/
3+
coverage/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"quoteProps": "as-needed",
8+
"jsxSingleQuote": false,
9+
"trailingComma": "none",
10+
"bracketSpacing": true,
11+
"bracketSameLine": true,
12+
"arrowParens": "avoid",
13+
"proseWrap": "always",
14+
"htmlWhitespaceSensitivity": "css",
15+
"endOfLine": "lf"
16+
}
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 'Install Python Packages with Local Wheels and Extras'
2+
description:
3+
'Installs specified Python packages with support for local wheels and optional
4+
extras.'
5+
author: 'OpenVINO Developers'
6+
inputs:
7+
packages:
8+
description:
9+
"Semicolon-separated list of packages to install, e.g.,
10+
'openvino;openvino_tokenizers[extra1,extra2]'"
11+
required: true
12+
requirements_files:
13+
description:
14+
"Semicolon-separated list of requirements.txt to install, e.g.,
15+
'requirements.txt;requirements-dev.txt'"
16+
required: false
17+
local_wheel_dir:
18+
description: 'Path to the directory containing local wheel files'
19+
required: true
20+
runs:
21+
using: 'node20'
22+
main: 'dist/index.js'

0 commit comments

Comments
 (0)