mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
neato error fix for llm
This commit is contained in:
@@ -3,7 +3,7 @@ const { evaluateTools } = require('./tools');
|
|||||||
function normalizeNeatoIssue(value) {
|
function normalizeNeatoIssue(value) {
|
||||||
const raw = String(value || '').trim();
|
const raw = String(value || '').trim();
|
||||||
if (!raw) return 'none';
|
if (!raw) return 'none';
|
||||||
if (raw === '200 - (UI_ALERT_INVALID)') return 'none';
|
if (raw.includes('200')) return 'none';
|
||||||
return raw;
|
return raw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user