Thamizh / app.py
thiyagab
semantic search added
c6cc78a
raw
history blame
212 Bytes
import streamlit as st
import semanticsearch
# x = st.slider('Select a value')
x=st.text_input('Ask valluvar')
# st.write(x, 'squared is', x * x)
response=semanticsearch.find_similarities(x)
st.text(response)