Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Allob
/
context-game
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5b71e40
context-game
/
app.py
Allob
Update app.py
5b71e40
over 1 year ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
streamlit
as
st
st.write(
'Try to guess a secret word by semantic similarity'
)
word = st.text_input(
"Input a word"
)
if
st.button(
"Guess"
):
st.write(
"Your word "
, word)