context-game / app.py
Allob's picture
Update app.py
5b71e40
raw
history blame
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)