import streamlit as st | |
# Page configuration | |
st.set_page_config( | |
page_title="Wren AI Cloud API Demo", | |
page_icon="π", | |
layout="wide", | |
) | |
st.title("π Wren AI Cloud API Demo") | |
st.subheader("Please select a demo from the sidebar.") | |
st.divider() | |
st.markdown( | |
""" | |
**Resources:** | |
- Wren AI official website: https://getwren.ai/ | |
- API Documentation: https://wrenai.readme.io/reference/cloud-getting-started | |
- Demo Source Code: https://huggingface.co/spaces/getWrenAI/wrenai-cloud-api-demo/tree/main | |
""" | |
) | |