Skip to content

Commit 1457292

Browse files
committed
fix
1 parent 08f939b commit 1457292

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ jobs:
374374
- name: Test multinomial_causal_lm.py
375375
if: ${{ 'Release' == matrix.build-type }} # Python bindings can be built in Release only
376376
timeout-minutes: 1
377-
run: ${{ env.INSTALL_DIR }}/samples/python/multinomial_causal_lm/multinomial_causal_lm.py ./TinyLlama-1.1B-Chat-v1.0/ 0
377+
run: ${{ env.INSTALL_DIR }}/samples/python/text_generation/multinomial_causal_lm.py ./TinyLlama-1.1B-Chat-v1.0/ 0
378378
working-directory: ${{ env.MODELS_DIR }}
379379

380380
- name: Test whisper_speech_recognition.py

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ jobs:
395395
if: ${{ 'Release' == matrix.build-type }} # Python bindings can be built in Release only
396396
run: |
397397
source ${OV_INSTALL_DIR}/setupvars.sh
398-
${OV_INSTALL_DIR}/samples/python/multinomial_causal_lm/multinomial_causal_lm.py ./TinyLlama-1.1B-Chat-v1.0/ 0
398+
${OV_INSTALL_DIR}/samples/python/text_generation/multinomial_causal_lm.py ./TinyLlama-1.1B-Chat-v1.0/ 0
399399
timeout-minutes: 1
400400

401401
- name: Test python samples (whisper_speech_recognition)

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ jobs:
470470
if: ${{ 'Release' == matrix.build-type }} # Python bindings can be built in Release only
471471
run: |
472472
. "${{ env.OV_INSTALL_DIR }}/setupvars.ps1"
473-
python ${{ env.OV_INSTALL_DIR }}\samples\python\multinomial_causal_lm\multinomial_causal_lm.py TinyLlama-1.1B-Chat-v1.0 0
473+
python ${{ env.OV_INSTALL_DIR }}\samples\python\text_generation\multinomial_causal_lm.py TinyLlama-1.1B-Chat-v1.0 0
474474
475475
- name: Test python samples (whisper_speech_recognition)
476476
if: ${{ 'Release' == matrix.build-type }} # Python bindings can be built in Release only

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ custom_streamer = CustomStreamer()
231231
232232
pipe.generate("The Sun is yellow because", max_new_tokens=15, streamer=custom_streamer)
233233
```
234-
For fully implemented iterable CustomStreamer please refer to [multinomial_causal_lm](https://github.com/openvinotoolkit/openvino.genai/tree/releases/2024/3/samples/python/multinomial_causal_lm/README.md) sample.
234+
For fully implemented iterable CustomStreamer please refer to [multinomial_causal_lm](https://github.com/openvinotoolkit/openvino.genai/tree/releases/2024/3/samples/python/text_generation/README.md) sample.
235235

236236

237237
Continuous batching with LLMPipeline:

0 commit comments

Comments
 (0)