openfree commited on
Commit
f6a596d
ยท
verified ยท
1 Parent(s): b5e2880

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -218,6 +218,7 @@ def chat_with_gpt(hist, msg, chart_summary):
218
  ).choices[0].message.content.strip()
219
 
220
  # โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 6. Gradio UI โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
 
221
  def create_app():
222
  with gr.Blocks(
223
  theme=gr.themes.Soft(),
@@ -227,6 +228,17 @@ def create_app():
227
  """
228
  ) as demo:
229
  gr.Markdown("## ๐Ÿ”ญ **CycleNavigator (Interactive)**")
 
 
 
 
 
 
 
 
 
 
 
230
  # โ”€โ”€ ์–ธ์–ด ์„ ํƒ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
231
  lang_state = gr.State(value="KO")
232
 
 
218
  ).choices[0].message.content.strip()
219
 
220
  # โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 6. Gradio UI โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
221
+
222
  def create_app():
223
  with gr.Blocks(
224
  theme=gr.themes.Soft(),
 
228
  """
229
  ) as demo:
230
  gr.Markdown("## ๐Ÿ”ญ **CycleNavigator (Interactive)**")
231
+ gr.Markdown(
232
+ "<sub>"
233
+ "<b>Interactive visual service delivering insights at a glance into the four major long cyclesโ€” </b>"
234
+ "<b>Business 9y</b> (credit-investment business cycle) โ€ข "
235
+ "<b>K-Wave 50y</b> (long technological-industrial wave) โ€ข "
236
+ "<b>Finance 80y</b> (long credit-debt cycle) โ€ข "
237
+ "<b>Hegemony 250y</b> (rise & fall of global powers cycle)"
238
+ "<b> โ€”through dynamic charts and AI chat.</b>"
239
+ "</sub>"
240
+ )
241
+
242
  # โ”€โ”€ ์–ธ์–ด ์„ ํƒ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
243
  lang_state = gr.State(value="KO")
244