JobMatchAI / app.py
laurenramroop's picture
Update app.py
a65a15f verified
raw
history blame
226 Bytes
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.")