rename klo to ktx

This commit is contained in:
Andrey Avtomonov 2026-05-10 23:51:24 +02:00
parent 1a42152e6f
commit 3ce510b55b
704 changed files with 10205 additions and 10255 deletions

View file

@ -14,7 +14,7 @@ function runValidator(args) {
}
function writeDebugJsonl(records) {
const dir = mkdtempSync(join(tmpdir(), 'klo-llm-debug-validator-'));
const dir = mkdtempSync(join(tmpdir(), 'ktx-llm-debug-validator-'));
const filePath = join(dir, 'debug.jsonl');
writeFileSync(filePath, `${records.map((record) => JSON.stringify(record)).join('\n')}\n`, 'utf8');
return filePath;
@ -52,7 +52,7 @@ test('prints usage and exits 2 when required arguments are missing', () => {
const result = runValidator([]);
assert.equal(result.status, 2);
assert.match(result.stderr, /Usage: node klo\/scripts\/validate-llm-debug-jsonl\.mjs anthropic\|vertex/);
assert.match(result.stderr, /Usage: node ktx\/scripts\/validate-llm-debug-jsonl\.mjs anthropic\|vertex/);
});
test('accepts sanitized debug JSONL with message, message-part, and tool cache markers', () => {