eaglelandsonce commited on
Commit
af31f9c
·
verified ·
1 Parent(s): 2061f69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -1 +1,12 @@
1
- # Project Video goes here
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ # Display an image
5
+ st.image("patienttalk.png", caption="Patient Talk")
6
+
7
+
8
+ # Display the clickable link
9
+ st.markdown(
10
+ '[Click here for more details](https://chatgpt.com/g/g-cBp7DBgok-patient-talk)',
11
+ unsafe_allow_html=True
12
+ )