Spaces:
Sleeping
Sleeping
fix: typo
Browse files
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(["
|
| 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)
|