Update app.py
Browse files
app.py
CHANGED
|
@@ -7,7 +7,7 @@ import streamlit as st
|
|
| 7 |
|
| 8 |
openai.api_key = st.secrets["pass"]
|
| 9 |
# Create Text Area Widget to enable user to enter texts
|
| 10 |
-
article_text = st.text_area(
|
| 11 |
# Create Radio Buttons
|
| 12 |
output_size = st.radio( label = “What kind of output do you want?”,
|
| 13 |
options= [“To-The-Point”, “Concise”, “Detailed”]
|
|
|
|
| 7 |
|
| 8 |
openai.api_key = st.secrets["pass"]
|
| 9 |
# Create Text Area Widget to enable user to enter texts
|
| 10 |
+
article_text = st.text_area("Enter your scientific texts to summarize")
|
| 11 |
# Create Radio Buttons
|
| 12 |
output_size = st.radio( label = “What kind of output do you want?”,
|
| 13 |
options= [“To-The-Point”, “Concise”, “Detailed”]
|