LLaMA-Factory / app.py
Justinrune's picture
Upload folder using huggingface_hub
2852136 verified
raw
history blame
179 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch()