import gradio as gr import json from urllib.parse import parse_qs, urlparse # Function to process messages with context def process_message(message, history, context_json): # Parse context from JSON string try: context = json.loads(context_json) except: context = {"error": "Invalid context data"} # Here you would connect to your chatbot backend # and provide both the message and the context # For demo purposes, we'll just echo the message with context info response = f"Received: {message}\n\nContext summary: Page titled '{context.get('title', 'Unknown')}'" # Format response for Gradio Chatbot using the newer messages format history.append({"role": "user", "content": message}) history.append({"role": "assistant", "content": response}) return history # Create Gradio interface with gr.Blocks(css="#chatbot {height: 400px; overflow-y: auto;}") as demo: gr.HTML("