Thamizh / app.py
thiyagab's picture
long response fix
187bdeb
raw
history blame
228 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)
if (x):
response=semanticsearch.find_similarities(x)
st.text(response)