| import gradio as gr | |
| gr.Interface( | |
| fn=lambda x: f"Connected to: {x}", | |
| inputs=gr.Textbox(label="UE5 Host:Port", value="localhost:8080"), | |
| outputs=gr.Textbox(label="Status"), | |
| title="🎮 Kariana.ai - UMCP", | |
| description=""" | |
| # Unreal MEGA Context Protocol | |
| **Gradio 1st Birthday Hackathon** 🎉 | |
| ## 📹 Demo Video | |
| https://www.youtube.com/watch?v=Xe_UNMfnqUQ | |
| ## Resources | |
| - [GitHub](https://github.com/kerinzeebart/UnrealMCP) | |
| - [Full App](https://huggingface.co/spaces/barlowski/Kariana-UMCP) | |
| """ | |
| ).launch() | |