We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23a7bb commit fc5b753Copy full SHA for fc5b753
.github/workflows/genai_lib.yml
@@ -10,6 +10,11 @@ jobs:
10
- uses: actions/setup-python@v4
11
with:
12
python-version: 3.8
13
+ - name: Install OpenVINO
14
+ run: |
15
+ mkdir ./ov/
16
+ curl https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2024.1.0-14645-e6dc0865128/l_openvino_toolkit_ubuntu20_2024.1.0.dev20240304_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
17
+ sudo ./ov/install_dependencies/install_openvino_dependencies.sh
18
- run: python -m pip install scikit-build
- - run: python -m pip install .
19
+ - run: source ./ov/setupvars.sh && python -m pip install .
20
- run: python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"
0 commit comments