Spaces:
Runtime error
Runtime error
Commit
·
62a6cd4
1
Parent(s):
8f4e395
Update app.py
Browse files
app.py
CHANGED
@@ -80,11 +80,11 @@ def main():
|
|
80 |
_, c, _ = st.columns((1, 3, 1))
|
81 |
query = c.text_input('Search text', value='مرغ دریای')
|
82 |
if len(query) > 0:
|
83 |
-
start = time()
|
84 |
results = image_search(query)
|
|
|
|
|
85 |
end = time()
|
86 |
st.text(str(end - start))
|
87 |
-
st.markdown(get_html(results), unsafe_allow_html=True)
|
88 |
|
89 |
|
90 |
|
|
|
80 |
_, c, _ = st.columns((1, 3, 1))
|
81 |
query = c.text_input('Search text', value='مرغ دریای')
|
82 |
if len(query) > 0:
|
|
|
83 |
results = image_search(query)
|
84 |
+
start = time()
|
85 |
+
st.markdown(get_html(results), unsafe_allow_html=True)
|
86 |
end = time()
|
87 |
st.text(str(end - start))
|
|
|
88 |
|
89 |
|
90 |
|