Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ st.header(":violet[Summarize your text with ease!]")
|
|
62 |
st.divider()
|
63 |
st.write("Enter your text below and click on the button to summarize it.")
|
64 |
text = st.text_area("Enter your text here", height=200)
|
65 |
-
model = st.radio("Select the model you want to use", ("Transformer","T5", "BART"
|
66 |
st.write("Click on the button to summarize your text.")
|
67 |
button = st.button("Summarize")
|
68 |
st.divider()
|
|
|
62 |
st.divider()
|
63 |
st.write("Enter your text below and click on the button to summarize it.")
|
64 |
text = st.text_area("Enter your text here", height=200)
|
65 |
+
model = st.radio("Select the model you want to use", ("Transformer","T5", "BART"))
|
66 |
st.write("Click on the button to summarize your text.")
|
67 |
button = st.button("Summarize")
|
68 |
st.divider()
|