Jd Vijay
Replace with minimal working demo
c0fa2d8 verified
Raw
History Blame Contribute Delete
541 Bytes
"""
Minimal Gradio App for JD OpenManus Engine
A simple, working demo to verify HF Spaces configuration
"""
import gradio as gr
def greet(name):
return f"Hello, {name}! Welcome to JD OpenManus Engine."
# Create demo interface
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(label="Your Name"),
outputs=gr.Textbox(label="Greeting"),
title="🤖 JD OpenManus Engine",
description="A minimal demo to verify the Space is working.",
)
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7860)