Update written_module.py
Browse files- written_module.py +9 -3
written_module.py
CHANGED
|
@@ -97,13 +97,19 @@ def written_dashboard(nickname_input):
|
|
| 97 |
# === Chart Area ===
|
| 98 |
with gr.Row():
|
| 99 |
with gr.Column(scale=1):
|
| 100 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
score_chart = gr.Plot()
|
|
|
|
| 102 |
with gr.Column(scale=1):
|
| 103 |
trend_category_dropdown = gr.Dropdown(
|
| 104 |
label="π Track Progress In",
|
| 105 |
-
choices=["Clarity", "
|
| 106 |
-
value="
|
| 107 |
)
|
| 108 |
trend_chart = gr.Plot(label="Progress Over Time")
|
| 109 |
|
|
|
|
| 97 |
# === Chart Area ===
|
| 98 |
with gr.Row():
|
| 99 |
with gr.Column(scale=1):
|
| 100 |
+
gr.Dropdown(
|
| 101 |
+
choices=[""],
|
| 102 |
+
label="π Score Comparison",
|
| 103 |
+
interactive=False,
|
| 104 |
+
show_label=True
|
| 105 |
+
)
|
| 106 |
score_chart = gr.Plot()
|
| 107 |
+
|
| 108 |
with gr.Column(scale=1):
|
| 109 |
trend_category_dropdown = gr.Dropdown(
|
| 110 |
label="π Track Progress In",
|
| 111 |
+
choices=["Clarity", "Structure", "Fluency", "Tone", "Content Relevance"],
|
| 112 |
+
value="Tone"
|
| 113 |
)
|
| 114 |
trend_chart = gr.Plot(label="Progress Over Time")
|
| 115 |
|