mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-22 09:47:47 +00:00
fix(core): Skip loop check for dividers (#6893)
This commit is contained in:
@@ -558,6 +558,30 @@ describe('LoopDetectionService', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('Divider Content Detection', () => {
|
||||
it('should not detect a loop for repeating divider-like content', () => {
|
||||
service.reset('');
|
||||
const dividerContent = '-'.repeat(CONTENT_CHUNK_SIZE);
|
||||
let isLoop = false;
|
||||
for (let i = 0; i < CONTENT_LOOP_THRESHOLD + 5; i++) {
|
||||
isLoop = service.addAndCheck(createContentEvent(dividerContent));
|
||||
expect(isLoop).toBe(false);
|
||||
}
|
||||
expect(loggers.logLoopDetected).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should not detect a loop for repeating complex box-drawing dividers', () => {
|
||||
service.reset('');
|
||||
const dividerContent = '╭─'.repeat(CONTENT_CHUNK_SIZE / 2);
|
||||
let isLoop = false;
|
||||
for (let i = 0; i < CONTENT_LOOP_THRESHOLD + 5; i++) {
|
||||
isLoop = service.addAndCheck(createContentEvent(dividerContent));
|
||||
expect(isLoop).toBe(false);
|
||||
}
|
||||
expect(loggers.logLoopDetected).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
||||
describe('Reset Functionality', () => {
|
||||
it('tool call should reset content count', () => {
|
||||
const contentEvent = createContentEvent('Some content.');
|
||||
|
||||
Reference in New Issue
Block a user