Contradictions explained

This commit is contained in:
AG
2025-10-12 14:57:31 +03:00
parent f42bac001d
commit e752c8d4d3
3 changed files with 16 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ describe('LLMService Refactor', () => {
candidates: [{
content: {
parts: [{
text: 'true'
text: '"Ice Cream" and "No desserts" are contradictory.'
}]
}
}]
@@ -64,6 +64,6 @@ describe('LLMService Refactor', () => {
const desireSet = { wants: ['Ice Cream', 'No desserts'], accepts: [], noGoes: [] };
const hasContradictions = await llmService.checkForInnerContradictions(desireSet as any);
expect(hasContradictions).toBe(true);
expect(hasContradictions).not.toBeNull();
});
});