Wootang01 commited on
Commit
c0fdbe0
·
1 Parent(s): a4ce809

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,8 +10,8 @@ def load_data():
10
 
11
  tokenizer, model = load_data()
12
 
13
- st.title("Chatbot -- Microsoft DialoGPT Medium")
14
- st.write("Write or paste text as if sending a text message to a person. The machine will attempt to respond appropriately.")
15
  input = st.text_input('Your text message:')
16
 
17
  if 'count' not in st.session_state or st.session_state.count == 6:
 
10
 
11
  tokenizer, model = load_data()
12
 
13
+ st.title("Chat with a Machine")
14
+ st.write("Write a text message as if writing a text message to a human. The machine will attempt to respond with an appropriate text message.")
15
  input = st.text_input('Your text message:')
16
 
17
  if 'count' not in st.session_state or st.session_state.count == 6: