doberst commited on
Commit
60ab8ee
·
verified ·
1 Parent(s): 9a180ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -16,17 +16,20 @@ Get started right away
16
 
17
  1. Install dependencies
18
 
 
19
  pip3 install llmware
20
  pip3 install openvino
21
  pip3 install openvino_genai
 
22
 
23
  2. Hello World
24
 
 
25
  from llmware.models import ModelCatalog
26
  model = ModelCatalog().load_model("bling-tiny-llama-ov")
27
  response = model.inference("The stock price is $45.\nWhat is the stock price?")
28
  print("response: ", response)
29
-
30
 
31
  Get started right away with [OpenVino](https://github.com/openvinotoolkit/openvino)
32
 
 
16
 
17
  1. Install dependencies
18
 
19
+ ```
20
  pip3 install llmware
21
  pip3 install openvino
22
  pip3 install openvino_genai
23
+ ```
24
 
25
  2. Hello World
26
 
27
+ ```
28
  from llmware.models import ModelCatalog
29
  model = ModelCatalog().load_model("bling-tiny-llama-ov")
30
  response = model.inference("The stock price is $45.\nWhat is the stock price?")
31
  print("response: ", response)
32
+ ```
33
 
34
  Get started right away with [OpenVino](https://github.com/openvinotoolkit/openvino)
35