taishi-i commited on
Commit
24d6a96
1 Parent(s): b7d0764

fix app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,7 +14,7 @@ class SearchApplication:
14
  st.header(self.title)
15
  col1, col2 = st.columns(2)
16
  with col1:
17
- self.query = st.text_input("Search words", value="")
18
 
19
  with col2:
20
  st.write("#")
@@ -60,7 +60,7 @@ class SearchApplication:
60
  self.query = "langchain"
61
 
62
  with word4:
63
- button4 = st.button("extension")
64
  if button4:
65
  self.query = "extension"
66
 
 
14
  st.header(self.title)
15
  col1, col2 = st.columns(2)
16
  with col1:
17
+ self.query = st.text_input("Search English words", value="")
18
 
19
  with col2:
20
  st.write("#")
 
60
  self.query = "langchain"
61
 
62
  with word4:
63
+ button4 = st.button("Extension")
64
  if button4:
65
  self.query = "extension"
66