File size: 278 Bytes
2b75707 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from transformers import pipeline
pipe = pipeline("text-generation", model="TheBloke/manticore-13b-chat-pyg-GPTQ")
def greet(name):
return pipe('who is the president of USA')
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |