File size: 366 Bytes
a54a65e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import gradio as gr
from dotenv import load_dotenv
import os
load_dotenv()
# With pipeline, just specify the task and the model id from the Hub.
from transformers import pipeline
pipe = pipeline("text-generation", model="distilgpt2")
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |