fix app.py
Browse files
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("
|
| 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 |
|