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