Abid Ali Awan commited on
Commit
0a88725
·
1 Parent(s): e245372

Fix Markdown syntax in Gradio interface: updated `gr.markdown` to `gr.Markdown` for proper rendering of the financial advisory agent's title and logo.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -675,7 +675,7 @@ def process_financial_query(message, history):
675
 
676
  # Create the Gradio interface
677
  with gr.Blocks(theme=gr.themes.Base(), title="Financial Advisory Agent") as demo:
678
- gr.markdown("""<center><img src="/gradio_api/file=public/images/fin_logo.png" alt="Fin Logo" style="width: 50px; vertical-align: middle;">
679
  <h1 style="text-align: center;">AI Financial Advisory Agent</h1>
680
  Your AI-powered financial advisor for budgeting, investments, expense tracking, portfolio analysis, and market trends.
681
  </center>
 
675
 
676
  # Create the Gradio interface
677
  with gr.Blocks(theme=gr.themes.Base(), title="Financial Advisory Agent") as demo:
678
+ gr.Markdown("""<center><img src="/gradio_api/file=public/images/fin_logo.png" alt="Fin Logo" style="width: 50px; vertical-align: middle;">
679
  <h1 style="text-align: center;">AI Financial Advisory Agent</h1>
680
  Your AI-powered financial advisor for budgeting, investments, expense tracking, portfolio analysis, and market trends.
681
  </center>