Kariana / app.py
barlowski's picture
Ultra simple working version with Gradio 3.50.2
bb46dc7 verified
raw
history blame contribute delete
577 Bytes
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()