katuni4ka commited on
Commit
10321d0
·
verified ·
1 Parent(s): 9d5c7f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -68,12 +68,11 @@ import openvino_genai as ov_genai
68
 
69
  device = "CPU"
70
  pipe = ov_genai.LLMPipeline(model_path, device)
71
- print(pipe.generate("What is OpenVINO?"))
72
  ```
73
 
74
  More GenAI usage examples can be found in OpenVINO GenAI library [docs](https://github.com/openvinotoolkit/openvino.genai/blob/master/src/README.md) and [samples](https://github.com/openvinotoolkit/openvino.genai?tab=readme-ov-file#openvino-genai-samples)
75
 
76
-
77
  ## Limitations
78
 
79
  Check the original model card for [original model card](https://huggingface.co/togethercomputer/RedPajama-INCITE-Instruct-3B-v1) for limitations.
 
68
 
69
  device = "CPU"
70
  pipe = ov_genai.LLMPipeline(model_path, device)
71
+ print(pipe.generate("What is OpenVINO?", max_length=200))
72
  ```
73
 
74
  More GenAI usage examples can be found in OpenVINO GenAI library [docs](https://github.com/openvinotoolkit/openvino.genai/blob/master/src/README.md) and [samples](https://github.com/openvinotoolkit/openvino.genai?tab=readme-ov-file#openvino-genai-samples)
75
 
 
76
  ## Limitations
77
 
78
  Check the original model card for [original model card](https://huggingface.co/togethercomputer/RedPajama-INCITE-Instruct-3B-v1) for limitations.