PierreBrunelle
commited on
Commit
β’
d2cb9df
1
Parent(s):
3097a6c
Update app.py
Browse files
app.py
CHANGED
@@ -463,10 +463,23 @@ def create_interface() -> gr.Blocks:
|
|
463 |
gr.Markdown(
|
464 |
"""
|
465 |
# π AI Financial Analysis Platform
|
466 |
-
|
|
|
467 |
"""
|
468 |
)
|
469 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
with gr.Row():
|
471 |
with gr.Column():
|
472 |
with gr.Accordion("π― What does it do?", open=False):
|
@@ -500,8 +513,7 @@ def create_interface() -> gr.Blocks:
|
|
500 |
<div style="background-color: #FFF4E5; border: 1px solid #FFE0B2; color: #663C00; border-radius: 8px; padding: 15px; margin: 15px 0;">
|
501 |
<strong>β οΈ Disclaimer:</strong>
|
502 |
<p style="margin: 8px 0;">
|
503 |
-
This tool provides financial analysis for informational purposes only and should not be considered as financial advice
|
504 |
-
Before making any investment decisions, please:
|
505 |
</p>
|
506 |
<ul style="margin: 8px 0;">
|
507 |
<li>Consult with qualified financial advisors</li>
|
|
|
463 |
gr.Markdown(
|
464 |
"""
|
465 |
# π AI Financial Analysis Platform
|
466 |
+
|
467 |
+
AI-powered market analysis and technical indicators powered by OpenAI GPT models and Pixeltable.
|
468 |
"""
|
469 |
)
|
470 |
|
471 |
+
gr.HTML(
|
472 |
+
"""
|
473 |
+
<div style="background-color: #FEE2E2; border: 1px solid #FECACA; color: #991B1B; border-radius: 8px; padding: 15px; margin: 15px 0;">
|
474 |
+
<strong>β οΈ Important Data Reliability Notice:</strong>
|
475 |
+
<p style="margin: 8px 0;">
|
476 |
+
This is a demonstration platform showcasing how to leverage LLMs for financial analysis.
|
477 |
+
The accuracy of information, data retrieved from yfinance, and calculated metrics are NOT guaranteed.
|
478 |
+
Use at your own risk. The creators and operators of this tool are not responsible for any financial losses or decisions made based on this analysis. This tool is intended for demonstration and educational purposes only.
|
479 |
+
</p>
|
480 |
+
</div>
|
481 |
+
"""
|
482 |
+
)
|
483 |
with gr.Row():
|
484 |
with gr.Column():
|
485 |
with gr.Accordion("π― What does it do?", open=False):
|
|
|
513 |
<div style="background-color: #FFF4E5; border: 1px solid #FFE0B2; color: #663C00; border-radius: 8px; padding: 15px; margin: 15px 0;">
|
514 |
<strong>β οΈ Disclaimer:</strong>
|
515 |
<p style="margin: 8px 0;">
|
516 |
+
This tool provides financial analysis for informational purposes only and should not be considered as financial advice, please:
|
|
|
517 |
</p>
|
518 |
<ul style="margin: 8px 0;">
|
519 |
<li>Consult with qualified financial advisors</li>
|