thiyagab commited on
Commit
8f17081
1 Parent(s): b74c1b5

formatted texts

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -5,6 +5,7 @@ import semanticsearch
5
  # x = st.slider('Select a value')
6
  x=st.text_input('Ask valluvar')
7
  # st.write(x, 'squared is', x * x)
8
- response=semanticsearch.find_similarities(x)
9
- st.text(response)
 
10
 
 
5
  # x = st.slider('Select a value')
6
  x=st.text_input('Ask valluvar')
7
  # st.write(x, 'squared is', x * x)
8
+ if (x):
9
+ response=semanticsearch.find_similarities(x)
10
+ st.write(response)
11