doberst commited on
Commit
9a180ec
·
verified ·
1 Parent(s): 19ba147

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -12
README.md CHANGED
@@ -16,21 +16,17 @@ 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
-
27
- model = ModelCatalog().load_model("bling-tiny-llama-ov")
28
-
29
- response = model.inference("The stock price is $45.\nWhat is the stock price?")
30
-
31
- print("response: ", response)
32
-
33
-
34
 
35
  Get started right away with [OpenVino](https://github.com/openvinotoolkit/openvino)
36
 
 
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