LLaMA-Factory / app.py
Justinrune's picture
Upload folder using huggingface_hub
5057c18 verified
raw
history blame contribute delete
No virus
189 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(share=True)