Skip to content

Commit 6beeb76

Browse files
[DOCS] tiny NPU adjustment-mstr (openvinotoolkit#27033)
1 parent 2d00d75 commit 6beeb76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/articles_en/learn-openvino/llm_inference_guide/genai-guide-npu.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ Use the following code snippet to change the default settings:
102102

103103
.. code-block:: python
104104
105-
pipeline_config = { "MAX_PROMPT_LEN": 1500, "MIN_RESPONSE_LEN": 500 }
105+
pipeline_config = { "MAX_PROMPT_LEN": 1024, "MIN_RESPONSE_LEN": 512 }
106106
pipe = ov_genai.LLMPipeline(model_path, "NPU", pipeline_config)
107107
108108
.. tab-item:: C++
109109
:sync: cpp
110110

111111
.. code-block:: cpp
112112
113-
ov::AnyMap pipeline_config = { { "MAX_PROMPT_LEN", 1500 }, { "MIN_RESPONSE_LEN", 500 } };
113+
ov::AnyMap pipeline_config = { { "MAX_PROMPT_LEN", 1024 }, { "MIN_RESPONSE_LEN", 512 } };
114114
ov::genai::LLMPipeline pipe(model_path, "NPU", pipeline_config);
115115
116116

0 commit comments

Comments
 (0)