File size: 357 Bytes
9a312f2
5bd4e37
9a312f2
 
 
 
 
 
 
 
 
 
5bd4e37
9a312f2
 
 
5bd4e37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)