import gradio as gr from model.analyzer import analyze_content import asyncio import time # Custom CSS for styling custom_css = """ .gradio-container { background: linear-gradient(135deg, #f06292 0%, #5c6bc0 100%) !important; } .treat-title { text-align: center; padding: 20px; margin-bottom: 20px; background: rgba(255, 255, 255, 0.9); border-radius: 15px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .treat-title h1 { font-size: 3em; color: #6366f1; margin-bottom: 10px; font-weight: bold; } .treat-title p { font-size: 1.2em; color: #5c6bc0; } .highlight { color: #6366f1; font-weight: bold; } .content-area, .results-area { background: rgba(255, 255, 255, 0.9) !important; border-radius: 15px !important; padding: 20px !important; margin: 20px 0 !important; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; } /* Input/Output styling */ .gradio-textbox textarea { background-color: white !important; color: #333 !important; border: 1px solid #ddd !important; border-radius: 8px !important; padding: 10px !important; } .gradio-button { background-color: #6366f1 !important; color: white !important; border: none !important; border-radius: 25px !important; padding: 10px 20px !important; font-size: 1.1em !important; transition: transform 0.2s !important; margin: 10px 0 !important; } .gradio-button:hover { transform: scale(1.05) !important; background-color: #c2185b !important; } /* Label styling */ label { color: #333 !important; font-weight: 500 !important; margin-bottom: 8px !important; } /* Center alignment for button */ .center-row { display: flex; justify-content: center; align-items: center; } """ def analyze_with_loading(text, progress=gr.Progress()): """ Synchronous wrapper for the async analyze_content function """ # Initialize progress progress(0, desc="Starting analysis...") # Initial setup phase for i in range(30): time.sleep(0.02) # Reduced sleep time progress((i + 1) / 100) # Perform analysis progress(0.3, desc="Processing text...") try: # Use asyncio.run to handle the async function call result = asyncio.run(analyze_content(text)) except Exception as e: return f"Error during analysis: {str(e)}" # Final processing for i in range(70, 100): time.sleep(0.02) # Reduced sleep time progress((i + 1) / 100) # Format the results triggers = result["detected_triggers"] if triggers == ["None"]: return "✓ No triggers detected in the content." else: trigger_list = "\n".join([f"• {trigger}" for trigger in triggers]) return f"⚠ Triggers Detected:\n{trigger_list}" # Create the Gradio interface with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as iface: # Title section gr.HTML("""

TREAT

Trigger Recognition for Enjoyable and Appropriate Television

""") # Content input section with gr.Row(): with gr.Column(elem_classes="content-area"): input_text = gr.Textbox( label="Content to Analyze", placeholder="Paste your content here...", lines=8 ) # Button section with gr.Row(elem_classes="center-row"): analyze_btn = gr.Button( "✨ Analyze Content", variant="primary" ) # Results section with gr.Row(): with gr.Column(elem_classes="results-area"): output_text = gr.Textbox( label="Analysis Results", lines=5, interactive=False ) # Set up the click event analyze_btn.click( fn=analyze_with_loading, inputs=[input_text], outputs=[output_text], api_name="analyze" ) gr.HTML(""" """) if __name__ == "__main__": # Launch without the 'ssr' argument iface.launch( share=False, debug=True, show_error=True )