Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -90,9 +90,12 @@ with gr.Blocks() as demo:
|
|
90 |
with gr.Row():
|
91 |
with gr.Column():
|
92 |
topic = gr.Textbox(label="Enter a financial topic or company name", placeholder="e.g., Apple Inc.")
|
93 |
-
analyze_btn = gr.Button(value="Analyze")
|
94 |
|
95 |
with gr.Column():
|
|
|
|
|
|
|
96 |
news_output = gr.DataFrame(label="News and Sentiment Analysis")
|
97 |
sentiment_plot = gr.Plot(label="Sentiment Analysis")
|
98 |
|
|
|
90 |
with gr.Row():
|
91 |
with gr.Column():
|
92 |
topic = gr.Textbox(label="Enter a financial topic or company name", placeholder="e.g., Apple Inc.")
|
93 |
+
analyze_btn = gr.Button(label="Analyze", value="Analyze")
|
94 |
|
95 |
with gr.Column():
|
96 |
+
gr.Empty()
|
97 |
+
gr.Empty() # Using Empty objects to maintain spacing
|
98 |
+
gr.Empty()
|
99 |
news_output = gr.DataFrame(label="News and Sentiment Analysis")
|
100 |
sentiment_plot = gr.Plot(label="Sentiment Analysis")
|
101 |
|