Update README.md
Browse files
README.md
CHANGED
@@ -16,21 +16,17 @@ Get started right away
|
|
16 |
|
17 |
1. Install dependencies
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
|
23 |
2. Hello World
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
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 |
|