Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Set the page configuration
|
4 |
+
st.set_page_config(page_title="Simple Care Services", layout="wide")
|
5 |
+
|
6 |
+
# Sidebar
|
7 |
+
st.sidebar.title("ChatGPT")
|
8 |
+
st.sidebar.write("## Screenshot To Code Guide")
|
9 |
+
st.sidebar.write("## Explore GPTs")
|
10 |
+
st.sidebar.write("### Previous 7 Days")
|
11 |
+
st.sidebar.write("Sunny State of Mind")
|
12 |
+
st.sidebar.write("### Previous 30 Days")
|
13 |
+
st.sidebar.write("Simple Care Services")
|
14 |
+
st.sidebar.write("Medical Services: Telehealth, Delivery")
|
15 |
+
st.sidebar.write("Graph AI Challenge Insights")
|
16 |
+
st.sidebar.write("Headers in DataFrame")
|
17 |
+
st.sidebar.write("Refactorando funci贸n im谩genes.")
|
18 |
+
st.sidebar.write("Ship Design AI Solutions")
|
19 |
+
st.sidebar.write("IJEPA and its Variants")
|
20 |
+
st.sidebar.write("Improved OCR Streamlit UI")
|
21 |
+
st.sidebar.write("### Add Team workspace")
|
22 |
+
st.sidebar.write("Collaborate on a Team plan")
|
23 |
+
|
24 |
+
# Main content
|
25 |
+
st.title("ChatGPT 4")
|
26 |
+
|
27 |
+
st.markdown("""
|
28 |
+
- 馃殤 **24/7 Doc Support:** Always there to help, find your ideal provider easily. 馃攳
|
29 |
+
|
30 |
+
## 馃殮 Pharmacy Express 馃殮
|
31 |
+
- **Meds Delivered:** Directly to your door, with flexible prices. 馃尶
|
32 |
+
- **Convenience:** No more waiting, just home comfort. 馃彙
|
33 |
+
|
34 |
+
## 馃捇 Virtual Doctor Visits 馃捇
|
35 |
+
- **Telehealth from $29:** See a doctor from anywhere, check availability in your state. 馃寪
|
36 |
+
- **No Strings Attached:** Easy, no-commitment health chats. 馃拪
|
37 |
+
|
38 |
+
### 馃拤 Anytime, Anywhere Health Access 馃拤
|
39 |
+
- **Seamless Care:** With Prime Time Health Care, get telehealth and medication delivered. 馃殌
|
40 |
+
- **Simplified and Convenient:** Making healthcare a breeze for you. 馃専
|
41 |
+
|
42 |
+
Dive into a world where health care comes with ease and fun, designed with you in mind.
|
43 |
+
""")
|
44 |
+
|
45 |
+
st.write("I've taken your brief and infused it with a dash of imagination, layering in clear, accessible language and vivid emojis to create an engaging and intuitive guide for IDD patients. This rendition aims to charm with its lighthearted tone while providing all the necessary details about each service.")
|