PinoCorgi commited on
Commit
44f9490
1 Parent(s): 9e0afef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -52,13 +52,13 @@ if text_input:
52
  answer = get_similar_links(query, db, embedding_vector)
53
  for link in answer:
54
  st.write(link)
 
55
 
56
  else:
57
  st.info("Please Input Valid Text")
58
 
59
- with st.sidebar:
60
- st.markdown("""
61
  ### Created by Ashwin Rachha.
62
  Source Data : https://github.com/AshwinRachha/LeetCode-Solutions
63
- Medium Blog :
64
  """)
 
52
  answer = get_similar_links(query, db, embedding_vector)
53
  for link in answer:
54
  st.write(link)
55
+ st.balloons()
56
 
57
  else:
58
  st.info("Please Input Valid Text")
59
 
60
+ st.markdown("""
 
61
  ### Created by Ashwin Rachha.
62
  Source Data : https://github.com/AshwinRachha/LeetCode-Solutions
63
+ Medium Blog : https://medium.com/@ashwin_rachha/querying-a-code-database-to-find-similar-coding-problems-using-langchain-814730da6e6d
64
  """)