File size: 440 Bytes
338667d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This is app1.py (the "main" Streamlit app)
import streamlit as st

# HTML for embedding the second Streamlit app via an iframe
st.markdown(
    """
    Created by [Fareed Khan](https://www.linkedin.com/in/fareed-khan-dev/)
    <iframe
        src="https://mistral-8x22b.streamlit.app/?embedded=true"
        style="width:100%; height:80vh; border:2px solid yellow; border-radius:10px;"
    </iframe>
    """,
    unsafe_allow_html=True,
)