1c6412d
8c8e3c8
e2b426d
8c8e3c8
e2b426d
8c8e3c8
e2b426d
a65a15f |
|
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.")
|