dengkane commited on
Commit
bddb13b
·
1 Parent(s): 3cfc7b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ D, I = index.search(np.array([question_embedding]), k)
62
  # Display the results
63
  st.write("Top {} similar content:".format(k))
64
  for i in range(k):
65
- st.write("{}: {} : {}".format(i+1, knowledge[I[0][i]], I[0][i])
66
 
67
  st.title('My first app')
68
 
 
62
  # Display the results
63
  st.write("Top {} similar content:".format(k))
64
  for i in range(k):
65
+ st.write("{}: {} : {}".format(i+1, knowledge[I[0][i]], I[0][i]))
66
 
67
  st.title('My first app')
68