Qwen-Training / test_app.py
PromptWizard Bot
Update to Zero GPU configuration for free GPU access
9b98859
raw
history blame
341 Bytes
"""Simple test app to verify Gradio works"""
import gradio as gr
def greet(name):
return f"Hello {name}! The PromptWizard training Space is setting up..."
demo = gr.Interface(
fn=greet,
inputs="text",
outputs="text",
title="PromptWizard Training Setup Test"
)
if __name__ == "__main__":
demo.launch()