Spaces:
Running
Running
Update app.py
Browse files
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 |
|