Spaces:
Sleeping
Sleeping
File size: 341 Bytes
9b98859 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""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() |