Spaces:
Running
Running
Merge branch 'main' of https://huggingface.co/spaces/realvest/realvest-app
Browse files
app.py
CHANGED
@@ -129,18 +129,33 @@ def summarize_products(products: list) -> str:
|
|
129 |
css='''
|
130 |
<style>
|
131 |
section.main > div {max-width:75rem}
|
|
|
|
|
|
|
132 |
</style>
|
133 |
'''
|
134 |
st.markdown(css, unsafe_allow_html=True)
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
# initialize state
|
137 |
init_session_state()
|
138 |
|
139 |
# Create a text input field
|
140 |
-
|
|
|
|
|
|
|
141 |
|
142 |
# Create a button
|
143 |
-
if st.button('
|
144 |
|
145 |
# # initialize
|
146 |
# st.session_state.clear()
|
|
|
129 |
css='''
|
130 |
<style>
|
131 |
section.main > div {max-width:75rem}
|
132 |
+
input[type="text"] {
|
133 |
+
background-color: #F2FEEF !important;
|
134 |
+
}
|
135 |
</style>
|
136 |
'''
|
137 |
st.markdown(css, unsafe_allow_html=True)
|
138 |
|
139 |
+
# remove the hamburger in the upper right hand corner and the Made with Streamlit footer
|
140 |
+
hide_menu_style = """
|
141 |
+
<style>
|
142 |
+
#MainMenu {visibility: hidden;}
|
143 |
+
footer {visibility: hidden;}
|
144 |
+
</style>
|
145 |
+
"""
|
146 |
+
st.markdown(hide_menu_style, unsafe_allow_html=True)
|
147 |
+
|
148 |
# initialize state
|
149 |
init_session_state()
|
150 |
|
151 |
# Create a text input field
|
152 |
+
#st.markdown('Storages, Car Washes, Laundromats... Ask us anything in your own words 🤗 ')
|
153 |
+
#query = st.text_input("")
|
154 |
+
|
155 |
+
query = st.text_input("Storages, Car Washes, Offices, Laundromats... Ask us anything in your own words 🤗 ")
|
156 |
|
157 |
# Create a button
|
158 |
+
if st.button('Search'):
|
159 |
|
160 |
# # initialize
|
161 |
# st.session_state.clear()
|