Shiraztanvir123 commited on
Commit
12f8e53
·
verified ·
1 Parent(s): 8ebabb0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,6 +6,6 @@ pipe = pipeline("text-generation")
6
 
7
  text=st.text_area('Enter Some Text!')
8
 
9
- id text:
10
  out = pipe(text)
11
  st.json(out)
 
6
 
7
  text=st.text_area('Enter Some Text!')
8
 
9
+ if text:
10
  out = pipe(text)
11
  st.json(out)