Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,8 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
-
st.write(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
st.write('Try to guess a secret word by semantic similarity')
|
| 4 |
+
|
| 5 |
+
word = st.text_input("Input a word")
|
| 6 |
+
|
| 7 |
+
if st.button("Guess"):
|
| 8 |
+
st.write("Your word ", word)
|