import os import streamlit as st import streamlit.components.v1 as components # 从环境变量中读取 backend 的值 backend_url = os.getenv("backend", "https://default-url.com") # 如果环境变量不存在,则使用默认 URL # 构造 iframe 的 HTML 代码 iframe_html = f'' # 使用 Streamlit 的 HTML 组件来展示 iframe components.html(iframe_html, height=800)