File size: 437 Bytes
0ade2f6
 
 
 
 
 
 
 
 
 
57ad34c
0ade2f6
 
1
2
3
4
5
6
7
8
9
10
11
12
13
## Modified from InternVL Project.

import os
import streamlit as st
import streamlit.components.v1 as components

st.set_page_config(layout="wide")

backend_url = os.getenv("backend", "https://chemllm.org/")  # 如果环境变量不存在,则使用默认 URL

iframe_html = f'<iframe src="{backend_url}" width="100%" height="800" style="border: none;display: block;margin: 0 auto;"></iframe>'

components.html(iframe_html, height=800)