someshb07 commited on
Commit
0775f95
·
verified ·
1 Parent(s): 945679c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ pipe = pipeline("summarization", model="Falconsai/text_summarization", device=-1
9
 
10
  def chunk_length(text, max_length = 1024):
11
  words = text.split()
12
- for i in range(0, len(words), max_length)
13
  yield " ".join(words[i:i + max_length])
14
 
15
  def extract_youtube_id(url):
 
9
 
10
  def chunk_length(text, max_length = 1024):
11
  words = text.split()
12
+ for i in range(0, len(words), max_length):
13
  yield " ".join(words[i:i + max_length])
14
 
15
  def extract_youtube_id(url):