File size: 576 Bytes
5e2128f
 
87757ba
 
5e2128f
87757ba
5e2128f
87757ba
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st
import runpy

# 设置页面配置
st.set_page_config(layout="wide", page_title="My Multi-Page App")

def home_page():
    st.header("欢迎来到首页")

    # 选择页面
    page = st.sidebar.radio("选择页面", ["天气查询助手", "博客写作助手"])
    
    # 根据选择加载子页面
    if page == "天气查询助手":
        runpy.run_path("agent_api_web_demo.py", run_name="__main__")
    elif page == "博客写作助手":
        runpy.run_path("multi_agents_api_web_demo.py", run_name="__main__")

# 加载页面
home_page()