Lodzins94 commited on
Commit
58d8641
1 Parent(s): b274955

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
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="bartowski/LiberatedHermes-2-Pro-Mistral-7B-GGUF")
8
+ pipe(messages