Keetawan commited on
Commit
406e574
·
verified ·
1 Parent(s): 9620306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -9,8 +9,7 @@ TITLE = """<h1 align="center">Insight LLM 💬</h1>"""
9
  SUBTITLE = """<h2 align="center">Effortlessly analyze and compare Thai stocks from 56-1 One Report with advanced LLM insights.</h2>"""
10
  DUPLICATE = """
11
  <div style="text-align: center; display: flex; justify-content: center; align-items: center;">
12
- <span>Duplicate the Space and run securely with your API KEY.
13
- </span>
14
  </div>
15
  """
16
 
@@ -115,4 +114,12 @@ with gr.Blocks() as demo:
115
  fn=bot, inputs=bot_inputs, outputs=[chatbot_component],
116
  )
117
 
 
 
 
 
 
 
 
 
118
  demo.queue(max_size=99).launch(debug=False, show_error=True)
 
9
  SUBTITLE = """<h2 align="center">Effortlessly analyze and compare Thai stocks from 56-1 One Report with advanced LLM insights.</h2>"""
10
  DUPLICATE = """
11
  <div style="text-align: center; display: flex; justify-content: center; align-items: center;">
12
+ <span>Duplicate the Space and run securely with your API KEY.</span>
 
13
  </div>
14
  """
15
 
 
114
  fn=bot, inputs=bot_inputs, outputs=[chatbot_component],
115
  )
116
 
117
+ # Adding the detail about currently available stock data
118
+ stock_detail = """
119
+ <div style="text-align: center; display: flex; justify-content: center; align-items: center; margin-top: 20px;">
120
+ <span>Currently, we have data for the following stocks: KBANK, SCB, TTB, AIS, TRUE, SANSIRI, ORIGIN.</span>
121
+ </div>
122
+ """
123
+ demo.append(gr.HTML(stock_detail))
124
+
125
  demo.queue(max_size=99).launch(debug=False, show_error=True)