Update app.py
Browse files
app.py
CHANGED
|
@@ -51,6 +51,7 @@ DEFAULT_SENTIMENT = """[
|
|
| 51 |
"It's a decent product, nothing special."
|
| 52 |
]"""
|
| 53 |
|
|
|
|
| 54 |
# Create a text area for user input
|
| 55 |
SENTIMENT = st.sidebar.text_area('Enter Sentiment', DEFAULT_SENTIMENT, height=150)
|
| 56 |
|
|
|
|
| 51 |
"It's a decent product, nothing special."
|
| 52 |
]"""
|
| 53 |
|
| 54 |
+
DEFAULT_SENTIMENT = "I'm so happy today!"
|
| 55 |
# Create a text area for user input
|
| 56 |
SENTIMENT = st.sidebar.text_area('Enter Sentiment', DEFAULT_SENTIMENT, height=150)
|
| 57 |
|