kaidol-thinking-experiment / app_minimal.py
developer-lunark's picture
Upload folder using huggingface_hub
e6d6584 verified
raw
history blame contribute delete
209 Bytes
import gradio as gr
def greet(name):
return f"μ•ˆλ…•ν•˜μ„Έμš”, {name}λ‹˜!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="KAIdol Test")
if __name__ == "__main__":
demo.launch()