FareedKhan commited on
Commit
338667d
1 Parent(s): c03c02d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This is app1.py (the "main" Streamlit app)
2
+ import streamlit as st
3
+
4
+ # HTML for embedding the second Streamlit app via an iframe
5
+ st.markdown(
6
+ """
7
+ Created by [Fareed Khan](https://www.linkedin.com/in/fareed-khan-dev/)
8
+ <iframe
9
+ src="https://mistral-8x22b.streamlit.app/?embedded=true"
10
+ style="width:100%; height:80vh; border:2px solid yellow; border-radius:10px;"
11
+ </iframe>
12
+ """,
13
+ unsafe_allow_html=True,
14
+ )