import gradio as gr # --- Main Execution --- if __name__ == "__main__": # Define the message and URLs for the notice notice_message = """ ## Important Notice: Application Migration This application has been successfully ported to Poe.com! We recommend using the new versions for an enhanced experience. Please find the updated applications below: """ # Create a Gradio Blocks interface with gr.Blocks(title="ePub Summarizer - Migrated") as demo: gr.Markdown(notice_message) # Use Markdown with HTML for clickable links that look like buttons gr.Markdown( """ """ ) gr.Markdown( """ """ ) gr.Markdown( """ Thank you for your understanding and continued support! """ ) # Launch the Gradio interface demo.launch()