Azim_Health / rep.py
JamanKH's picture
Edit 1
5bd4e37
Raw
History Blame Contribute Delete
357 Bytes
import streamlit as st
import requests
def app():
st.subheader('Symtomps Checker')
# Define the link to redirect to
link = "https://huggingface.co/spaces/JamanKH/disease_prediction"
# Create a button widget
button = st.button("Start Symptoms Checking")
# Check if the button is pressed
if button:
st.markdown(link)