perbaiki typo
Browse files
app.py
CHANGED
|
@@ -89,14 +89,14 @@ def run_archon(cust_id):
|
|
| 89 |
return summary, advice, plot
|
| 90 |
|
| 91 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 92 |
-
gr.Markdown("#
|
| 93 |
with gr.Row():
|
| 94 |
with gr.Column(scale=1):
|
| 95 |
input_id = gr.Textbox(label="Customer ID", placeholder="C0001")
|
| 96 |
btn = gr.Button("Analyze Customer", variant="primary")
|
| 97 |
out_json = gr.JSON(label="Deterministic Metrics")
|
| 98 |
with gr.Column(scale=2):
|
| 99 |
-
out_plot = gr.Plot(label="Financial Timeline
|
| 100 |
|
| 101 |
out_advice = gr.Textbox(label="Archon Generative Advice (LLM)", lines=5)
|
| 102 |
|
|
|
|
| 89 |
return summary, advice, plot
|
| 90 |
|
| 91 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 92 |
+
gr.Markdown("# 🪙 Archon-AI: Industrial Dashboard")
|
| 93 |
with gr.Row():
|
| 94 |
with gr.Column(scale=1):
|
| 95 |
input_id = gr.Textbox(label="Customer ID", placeholder="C0001")
|
| 96 |
btn = gr.Button("Analyze Customer", variant="primary")
|
| 97 |
out_json = gr.JSON(label="Deterministic Metrics")
|
| 98 |
with gr.Column(scale=2):
|
| 99 |
+
out_plot = gr.Plot(label="Financial Timeline")
|
| 100 |
|
| 101 |
out_advice = gr.Textbox(label="Archon Generative Advice (LLM)", lines=5)
|
| 102 |
|