import streamlit as st import requests def app(): st.subheader('Excercise Detection') # Define the link to redirect to link = "https://huggingface.co/spaces/JamanKH/motion_detection" # Create a button widget button = st.button("Start Detection") # If the button is clicked, send a request to the link and display it in an iframe if button: st.markdown(link)