File size: 226 Bytes
1c6412d
8c8e3c8
e2b426d
8c8e3c8
e2b426d
 
8c8e3c8
e2b426d
a65a15f
1
2
3
4
5
6
7
8
9
10
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.")