# app.py """ Gradio App for Smart Web Analyzer Plus - Human-Readable Outputs Key Features: - Accepts a URL - Lets users select analysis modes (Clean Text, Summarization, Sentiment, Topic) - Fetches and processes content (smart_web_analyzer.py) - Displays each result in its own tab for readability - Includes example URLs """ import gradio as gr from smart_web_analyzer import ( fetch_web_content, clean_text, summarize_text, analyze_sentiment, detect_topic, preview_clean_text, ) def analyze_url(url, modes): """ Fetches web content and performs selected analyses (modes). Parameters: url (str): URL to analyze modes (list): list of selected modes Returns: tuple of str: (clean_text_result, summarization_result, sentiment_result, topics_result) """ # Default messages if a mode is not selected clean_text_result = "Mode not selected." summarization_result = "Mode not selected." sentiment_result = "Mode not selected." topics_result = "Mode not selected." # 1) Fetch/clean the web content try: html_content = fetch_web_content(url) except Exception as e: # Return the error in each field for clarity error_msg = f"**Error fetching URL**: {e}" return (error_msg, error_msg, error_msg, error_msg) # Clean the text (keeping