ferguch9 commited on
Commit
0604510
·
1 Parent(s): a282e3f

fix: typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ st.sidebar.title('Options')
40
  max = st.sidebar.slider('Max Length', 50, 1000, step=10, value=500)
41
  min = st.sidebar.slider('Min Length', 10, 500, step=10, value=100)
42
 
43
- textTab, docTab, audioTab = st.tabs(["Paste Text", "Text Document", "Audio File"])
44
 
45
  with textTab:
46
  sentence = st.text_area('Paste text to be summarised:', help='Paste text into text area and hit Summarise button', height=300)
 
40
  max = st.sidebar.slider('Max Length', 50, 1000, step=10, value=500)
41
  min = st.sidebar.slider('Min Length', 10, 500, step=10, value=100)
42
 
43
+ textTab, docTab, audioTab = st.tabs(["Plain Text", "Text Document", "Audio File"])
44
 
45
  with textTab:
46
  sentence = st.text_area('Paste text to be summarised:', help='Paste text into text area and hit Summarise button', height=300)