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("

Contextual Chatbot

") # Hidden context state - will be updated via JavaScript context_json = gr.State('{}') # Optional: Show context for debugging with gr.Accordion("Page Context", open=False): context_display = gr.JSON(value={}) update_button = gr.Button("Request Full Context") # Main chatbot interface chatbot = gr.Chatbot(value=[], type="messages") msg = gr.Textbox(placeholder="Ask about this page...") clear = gr.Button("Clear") # Handle sending messages msg.submit(process_message, [msg, chatbot, context_json], [chatbot]) # Clear chat history clear.click(lambda: [], None, chatbot, queue=False) # JavaScript to handle context gr.HTML(""" """) # Add class to update button for JavaScript selection update_button.elem_classes = ["update-button"] # Launch the app if __name__ == "__main__": demo.launch(share=True)