thiyagab
commited on
Commit
•
8f17081
1
Parent(s):
b74c1b5
formatted texts
Browse files
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 |
-
|
9 |
-
|
|
|
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 |
|