File size: 515 Bytes
f5bbade 64371ee f5bbade 64371ee f5bbade |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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
"""
)
|