Spaces:
Build error
Build error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use a pipeline as a high-level helper
|
| 2 |
+
from transformers import pipeline
|
| 3 |
+
|
| 4 |
+
pipe = pipeline("text-generation", model="dphn/Dolphin3.0-Mistral-24B")
|
| 5 |
+
messages = [
|
| 6 |
+
{"role": "user", "content": "Who are you?"},
|
| 7 |
+
]
|
| 8 |
+
pipe(messages)
|