blt10 / app.py
aiqcamp's picture
Create app.py
04c7345 verified
raw
history blame contribute delete
647 Bytes
import streamlit as st
def main():
try:
# μ• ν”Œλ¦¬μΌ€μ΄μ…˜μ˜ 메인 둜직
st.title('AIQ λΈ”λ‘œκ·Έ μž‘κ°€')
# HTML iframe μ½”λ“œλ₯Ό Markdown ν•¨μˆ˜λ₯Ό μ‚¬μš©ν•˜μ—¬ 포함
iframe_html = f"""
<iframe src="https://app.relevanceai.com/agents/f1db6c/eddb63179c6f-4e0a-bc55-557a58e422b2/031a5940-4b06-450f-98d5-5ff66c4b8f5a/share" width="100%" height="800" frameborder="0"></iframe>
"""
st.markdown(iframe_html, unsafe_allow_html=True)
except Exception as e:
st.error(f"μ• ν”Œλ¦¬μΌ€μ΄μ…˜ μ‹€ν–‰ 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {e}")
if __name__ == "__main__":
main()