AiGPT-4O / app.py
czczup's picture
Update app.py
2e8e8a7 verified
raw
history blame
595 Bytes
import streamlit as st
st.set_page_config(layout="wide")
# Custom CSS to make the iframe full screen
st.markdown(
"""
<style>
.fullScreenFrame > iframe {
position: absolute;
width: 100%;
height: 100%;
border: none;
}
.main > div {
padding: 0;
height: 100vh;
}
</style>
""",
unsafe_allow_html=True,
)
# Embed the external Streamlit webpage
st.markdown(
"""
<div class="fullScreenFrame">
<iframe src="https://internvl.opengvlab.com/"></iframe>
</div>
""",
unsafe_allow_html=True,
)