Spaces:
Build error
Build error
| 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) | |