Daniel commited on
Commit
a2dc928
·
1 Parent(s): c696a73

Initial commit

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ {}
3
+ ---
4
+ from transformers import pipeline, Conversation
5
+
6
+ converse = pipeline("conversational")
7
+
8
+ conversation_1 = Conversation("Going to the movies tonight - any suggestions?")
9
+ conversation_2 = Conversation("What's the last book you have read?")
10
+ converse([conversation_1, conversation_2])