Hugging_App / app.py
Ntama2437's picture
Upload folder using huggingface_hub
7113e9e verified
raw
history blame contribute delete
235 Bytes
import gradio as gr
from transformers import pipeline
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
iface.launch(share=True)