File size: 542 Bytes
6ec48ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from transformers import pipeline
import gradio as gr

#model
model = pipeline("summarization", model="sshleifer/distilbart-cnn-12-6") #model="sshleifer/distilbart-cnn-12-6")

def func(article):
  article_length = article.split()
  words = len(article_length)
  if words>900:
    return "Oops!😰, I can't summarize text that long, please shorten the text🥺"
  else:
    return (model(article, max_length=100, do_sample=False))

app = gr.Interface(fn=func, inputs="textbox", outputs="textbox", title="InfluencerAI-Summarizer")
app.launch()