Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ st.markdown("""
|
|
64 |
# ----------- Header Title (One-line, Scrollable if Long) -----------
|
65 |
st.markdown("""
|
66 |
<div class="title-wrapper">
|
67 |
-
<h1 class="main-title">📊 EquiPulse: Stock
|
68 |
</div>
|
69 |
""", unsafe_allow_html=True)
|
70 |
|
@@ -76,8 +76,8 @@ st.markdown("""
|
|
76 |
""", unsafe_allow_html=True)
|
77 |
|
78 |
# ----------- Input Area -----------
|
79 |
-
st.markdown("#### 🎯 Enter Company Tickers
|
80 |
-
free_text = st.text_area("Example: AAPL,
|
81 |
|
82 |
# ----------- Ticker Extraction -----------
|
83 |
ner_pipeline = get_ner_pipeline()
|
|
|
64 |
# ----------- Header Title (One-line, Scrollable if Long) -----------
|
65 |
st.markdown("""
|
66 |
<div class="title-wrapper">
|
67 |
+
<h1 class="main-title">📊 EquiPulse: Stock Sentiment Tracker</h1>
|
68 |
</div>
|
69 |
""", unsafe_allow_html=True)
|
70 |
|
|
|
76 |
""", unsafe_allow_html=True)
|
77 |
|
78 |
# ----------- Input Area -----------
|
79 |
+
st.markdown("#### 🎯 Enter Your Target Company Tickers")
|
80 |
+
free_text = st.text_area("Example: AAPL, NVDA, TSLA", height=90)
|
81 |
|
82 |
# ----------- Ticker Extraction -----------
|
83 |
ner_pipeline = get_ner_pipeline()
|