File size: 366 Bytes
e2c4994
 
 
 
 
 
418fff6
e2c4994
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from transformers import pipeline
import gradio as gr


model = pipeline(
    "summarization",
    "captain-awesome/naveed-ggml-model-gpt4all-falcon-q4_0"
)

def predict(prompt):
    summary = model(prompt)[0]["summary_text"]
    return summary


# create an interface for the model
with gr.Interface(predict, "textbox", "text") as interface:
    interface.launch()