Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.title("Text Similarity Checker") | |
text1 = st.text_input("Enter the first text:") | |
text2 = st.text_input("Enter the second text:") | |
if text1 and text2: | |
st.write("You entered text in both fields.") | |