feat(web): update reflection engine result

This commit is contained in:
zhaoying
2025-12-23 17:16:57 +08:00
parent 480f721888
commit 72acea990a

View File

@@ -272,6 +272,7 @@ const SelfReflectionEngine: React.FC = () => {
</div>
</div>
</RbCard>
{result.reflexion_data.length > 0 && (
<RbCard
title={t('reflectionEngine.conflictDetection')}
>
@@ -293,6 +294,8 @@ const SelfReflectionEngine: React.FC = () => {
))}
</Space>
</RbCard>
)}
{result.quality_assessments.length > 0 && (
<RbCard
title={t('reflectionEngine.qualityAssessment')}
>
@@ -312,6 +315,8 @@ const SelfReflectionEngine: React.FC = () => {
</div>
))}
</RbCard>
)}
{result.memory_verifies.length > 0 && (
<RbCard
title={t('reflectionEngine.privacyAudit')}
>
@@ -335,6 +340,7 @@ const SelfReflectionEngine: React.FC = () => {
</div>
))}
</RbCard>
)}
</>}
</Space>
</Col>