Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +11 -1
src/streamlit_app.py
CHANGED
@@ -73,7 +73,17 @@ Results are presented in easy-to-read tables, visualized in an interactive tree
|
|
73 |
with st.sidebar:
|
74 |
st.write("Use the following code to embed the AcademiaMiner web app on your website. Feel free to adjust the width and height values to fit your page.")
|
75 |
code = '''
|
76 |
-
<iframe
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
'''
|
78 |
st.code(code, language="html")
|
79 |
st.text("")
|
|
|
73 |
with st.sidebar:
|
74 |
st.write("Use the following code to embed the AcademiaMiner web app on your website. Feel free to adjust the width and height values to fit your page.")
|
75 |
code = '''
|
76 |
+
<iframe
|
77 |
+
src="https://aiecosystem-academiaminer.hf.space"
|
78 |
+
frameborder="0"
|
79 |
+
width="850"
|
80 |
+
height="450"
|
81 |
+
></iframe>
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
'''
|
88 |
st.code(code, language="html")
|
89 |
st.text("")
|