Update app.py
Browse files
app.py
CHANGED
|
@@ -366,6 +366,19 @@ button.primary:hover {
|
|
| 366 |
background: var(--t-purple-dark) !important;
|
| 367 |
box-shadow: 0 4px 16px rgba(98,100,167,.45) !important;
|
| 368 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 369 |
|
| 370 |
input[type=checkbox]:checked { accent-color: var(--t-purple) !important; }
|
| 371 |
|
|
@@ -440,6 +453,7 @@ with gr.Blocks(title="Yapper - Meeting Transcriber") as demo:
|
|
| 440 |
interactive=bool(HF_TOKEN),
|
| 441 |
)
|
| 442 |
run_btn = gr.Button("▶ Transkribieren", variant="primary", size="lg")
|
|
|
|
| 443 |
|
| 444 |
with gr.Column(scale=2):
|
| 445 |
transcript_out = gr.Textbox(
|
|
@@ -456,7 +470,6 @@ with gr.Blocks(title="Yapper - Meeting Transcriber") as demo:
|
|
| 456 |
# ── Zusammenfassung ──
|
| 457 |
with gr.Row():
|
| 458 |
with gr.Column():
|
| 459 |
-
sum_btn = gr.Button("🧠 Meeting zusammenfassen (GPT-OSS 120B)", variant="secondary", size="lg")
|
| 460 |
summary_out = gr.Markdown(
|
| 461 |
label="📋 Meeting-Zusammenfassung",
|
| 462 |
value="",
|
|
|
|
| 366 |
background: var(--t-purple-dark) !important;
|
| 367 |
box-shadow: 0 4px 16px rgba(98,100,167,.45) !important;
|
| 368 |
}
|
| 369 |
+
button.secondary {
|
| 370 |
+
background: var(--t-purple-light) !important;
|
| 371 |
+
color: var(--t-purple-dark) !important;
|
| 372 |
+
border: 1.5px solid var(--t-purple-mid) !important;
|
| 373 |
+
border-radius: 6px !important;
|
| 374 |
+
font-weight: 600 !important;
|
| 375 |
+
font-size: .95rem !important;
|
| 376 |
+
transition: background .15s !important;
|
| 377 |
+
}
|
| 378 |
+
button.secondary:hover {
|
| 379 |
+
background: var(--t-purple-mid) !important;
|
| 380 |
+
color: #fff !important;
|
| 381 |
+
}
|
| 382 |
|
| 383 |
input[type=checkbox]:checked { accent-color: var(--t-purple) !important; }
|
| 384 |
|
|
|
|
| 453 |
interactive=bool(HF_TOKEN),
|
| 454 |
)
|
| 455 |
run_btn = gr.Button("▶ Transkribieren", variant="primary", size="lg")
|
| 456 |
+
sum_btn = gr.Button("🧠 Zusammenfassen (GPT-OSS 120B)", variant="secondary", size="lg")
|
| 457 |
|
| 458 |
with gr.Column(scale=2):
|
| 459 |
transcript_out = gr.Textbox(
|
|
|
|
| 470 |
# ── Zusammenfassung ──
|
| 471 |
with gr.Row():
|
| 472 |
with gr.Column():
|
|
|
|
| 473 |
summary_out = gr.Markdown(
|
| 474 |
label="📋 Meeting-Zusammenfassung",
|
| 475 |
value="",
|