github-actions[bot] commited on
Commit ·
4dbceee
1
Parent(s): 904c006
Sync from GitHub: 167b65b6ddc3de7f29548d9d6ba060e50653b352
Browse files
frontend/src/components/ImagePreview.jsx
CHANGED
|
@@ -97,7 +97,7 @@ const ImagePreview = ({ imageData, fileName, onResolutionChange, onEnhanceToggle
|
|
| 97 |
}`}
|
| 98 |
>
|
| 99 |
<Brain className="w-4 h-4" />
|
| 100 |
-
{useReasoning ? '
|
| 101 |
</button>
|
| 102 |
|
| 103 |
{useReasoning && (
|
|
|
|
| 97 |
}`}
|
| 98 |
>
|
| 99 |
<Brain className="w-4 h-4" />
|
| 100 |
+
{useReasoning ? 'Reasoning ✓' : 'Simple Mode'}
|
| 101 |
</button>
|
| 102 |
|
| 103 |
{useReasoning && (
|
frontend/src/components/ResultCard.jsx
CHANGED
|
@@ -327,7 +327,7 @@ const ResultCard = ({ result, imageData, processedImageData, onReprocess, isProc
|
|
| 327 |
<div className="flex items-center gap-2">
|
| 328 |
<Brain className="w-5 h-5 text-blue-600" />
|
| 329 |
<h5 className="text-sm font-semibold text-blue-700 uppercase tracking-wide">
|
| 330 |
-
|
| 331 |
</h5>
|
| 332 |
</div>
|
| 333 |
{showReasoning ? (
|
|
|
|
| 327 |
<div className="flex items-center gap-2">
|
| 328 |
<Brain className="w-5 h-5 text-blue-600" />
|
| 329 |
<h5 className="text-sm font-semibold text-blue-700 uppercase tracking-wide">
|
| 330 |
+
Reasoning Output
|
| 331 |
</h5>
|
| 332 |
</div>
|
| 333 |
{showReasoning ? (
|