Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,16 @@
|
|
1 |
import streamlit as st
|
2 |
from streamlit_option_menu import streamlit_option_menu
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# Create a nested streamlit-option-menu
|
5 |
options = [
|
6 |
"Option 1",
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_option_menu import streamlit_option_menu
|
3 |
|
4 |
+
|
5 |
+
embed = """<iframe
|
6 |
+
src="https://cosmoai-cosmos.hf.space"
|
7 |
+
frameborder="0"
|
8 |
+
width="850"
|
9 |
+
height="450"
|
10 |
+
></iframe>
|
11 |
+
"""
|
12 |
+
st.markdown(embed, unsafe_allow_html=True)
|
13 |
+
|
14 |
# Create a nested streamlit-option-menu
|
15 |
options = [
|
16 |
"Option 1",
|