Update app.ipynb
Browse files
app.ipynb
CHANGED
@@ -1,3 +1,8 @@
|
|
1 |
-
#
|
2 |
-
from transformers import
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use a pipeline as a high-level helper
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
messages = [
|
5 |
+
{"role": "user", "content": "Who are you?"},
|
6 |
+
]
|
7 |
+
pipe = pipeline("text-generation", model="ibm-granite/granite-3.0-8b-instruct")
|
8 |
+
pipe(messages)
|