Update app.py
Browse files
app.py
CHANGED
@@ -10,8 +10,8 @@ def load_data():
|
|
10 |
|
11 |
tokenizer, model = load_data()
|
12 |
|
13 |
-
st.title("
|
14 |
-
st.write("Write
|
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:
|