File size: 228 Bytes
3b9fa76
 
c6cc78a
 
 
 
 
8f17081
 
187bdeb
c6cc78a
1
2
3
4
5
6
7
8
9
10
11
12
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)