Update README.md
Browse files
README.md
CHANGED
|
@@ -16,4 +16,11 @@ Model converted specifically for NPU on Intel devices.
|
|
| 16 |
pip install --pre openvino==2025.2.0rc2 openvino-tokenizers==2025.2.0.0rc2 openvino-genai==2025.2.0.0rc2 --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
|
| 17 |
```
|
| 18 |
|
| 19 |
-
NPU driver Version required : 32.0.100.4023
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
pip install --pre openvino==2025.2.0rc2 openvino-tokenizers==2025.2.0.0rc2 openvino-genai==2025.2.0.0rc2 --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
|
| 17 |
```
|
| 18 |
|
| 19 |
+
NPU driver Version required : 32.0.100.4023
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
import openvino_genai as ov_genai
|
| 23 |
+
|
| 24 |
+
pipe = ov_genai.LLMPipeline("qwen3-0.6b-int4-ov-npu", device="NPU")
|
| 25 |
+
pipe.generate("The Sun is yellow because", max_new_tokens=500)
|
| 26 |
+
```
|