Staticsho commited on
Commit
918ed42
·
1 Parent(s): 5abbca6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,3 +1,8 @@
1
- import streamlit as staticmethod
2
- from transformers import pipeline
 
 
 
 
 
3
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline, Conversation
3
+
4
+ converse = pipeline('conversational ')
5
+ query = st.text_input("what's on your mind")
6
+
7
+ conversation = Conversation(query)
8