File size: 24,532 Bytes
2b64d42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | import { afterEach, describe, it } from 'node:test';
import assert from 'node:assert/strict';
import { annotateRiskyReadToolResult, extractCallerSubKey, handleMessages } from '../src/handlers/messages.js';
import { applyJsonResponseHint, extractRequestedJsonKeys, isExplicitJsonRequested, stabilizeJsonPayload } from '../src/handlers/chat.js';
function chatChunk(chunk) {
return `data: ${JSON.stringify(chunk)}\n\n`;
}
function fakeRes() {
const listeners = new Map();
return {
body: '',
writableEnded: false,
write(chunk) {
this.body += typeof chunk === 'string' ? chunk : chunk.toString('utf8');
return true;
},
end(chunk) {
if (chunk) this.write(chunk);
this.writableEnded = true;
const cbs = listeners.get('close') || [];
for (const cb of cbs) cb();
},
on(event, cb) {
if (!listeners.has(event)) listeners.set(event, []);
listeners.get(event).push(cb);
return this;
},
};
}
function parseAnthropicEvents(raw) {
return raw
.trim()
.split('\n\n')
.filter(Boolean)
.filter(frame => !frame.startsWith(':'))
.map(frame => {
const lines = frame.split('\n');
return {
event: lines.find(line => line.startsWith('event: '))?.slice(7),
data: JSON.parse(lines.find(line => line.startsWith('data: '))?.slice(6) || '{}'),
};
});
}
describe('Anthropic messages request translation', () => {
afterEach(() => {
// No shared mutable state in these tests, but keep the hook here so this
// file stays symmetric with the stateful auth/rate-limit tests.
});
it('passes thinking through to the chat handler and preserves reasoning in the response', async () => {
let capturedBody = null;
const thinking = { type: 'enabled', budget_tokens: 64 };
const result = await handleMessages({
model: 'claude-sonnet-4.6',
thinking,
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{
index: 0,
message: { role: 'assistant', reasoning_content: 'plan', content: 'done' },
finish_reason: 'stop',
}],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.deepEqual(capturedBody.thinking, thinking);
assert.equal(result.status, 200);
assert.equal(result.body.content[0].type, 'thinking');
assert.equal(result.body.content[0].thinking, 'plan');
assert.equal(result.body.content[1].type, 'text');
assert.equal(result.body.content[1].text, 'done');
});
it('maps Anthropic tool_choice variants to OpenAI shapes', async () => {
const cases = [
{ input: { type: 'auto' }, expected: 'auto' },
{ input: { type: 'any' }, expected: 'required' },
{ input: { type: 'tool', name: 'Read' }, expected: { type: 'function', function: { name: 'Read' } } },
{ input: { type: 'none' }, expected: 'none' },
];
for (const testCase of cases) {
let capturedBody = null;
const result = await handleMessages({
model: 'claude-sonnet-4.6',
tools: [{ name: 'Read', description: 'read files', input_schema: { type: 'object' } }],
tool_choice: testCase.input,
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.equal(result.status, 200);
assert.deepEqual(capturedBody.tool_choice, testCase.expected);
}
});
it('annotates risky Read tool_result stubs before Cascade sees them', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
messages: [
{ role: 'user', content: 'review files' },
{ role: 'assistant', content: [
{ type: 'tool_use', id: 'toolu_1', name: 'Read', input: { file_path: 'big.md' } },
] },
{ role: 'user', content: [
{
type: 'tool_result',
tool_use_id: 'toolu_1',
is_error: true,
content: 'File content (377.3KB) exceeds maximum allowed size (256KB). Use offset and limit parameters to read specific portions of the file, or search for specific content instead of reading the whole file.',
},
] },
],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
const toolMsg = capturedBody.messages.find(m => m.role === 'tool');
assert.match(toolMsg.content, /does not prove the full file body/);
assert.match(toolMsg.content, /offset\/limit/);
});
it('does not annotate normal Read output or non-Read tool results', () => {
const normal = '1\t# README\n2\tActual content';
assert.equal(
annotateRiskyReadToolResult(normal, { toolName: 'Read' }),
normal,
);
const bashStub = 'File content (377.3KB) exceeds maximum allowed size (256KB). Use offset and limit parameters.';
assert.equal(
annotateRiskyReadToolResult(bashStub, { toolName: 'Bash', isError: true }),
bashStub,
);
});
it('does not annotate line-numbered real body that contains stub keywords', () => {
const realBody = '1\t// previously cached value\n2\tconst x = 1;\n3\t// content was truncated last run\n4\tconst y = 2;';
assert.equal(
annotateRiskyReadToolResult(realBody, { toolName: 'Read' }),
realBody,
);
const cnBody = '1\t// 内容未变更:保留旧值\n2\tconst foo = 1;';
assert.equal(
annotateRiskyReadToolResult(cnBody, { toolName: 'Read' }),
cnBody,
);
});
it('annotates real Claude Code cached-unchanged stub', () => {
const cachedStub = 'File unchanged since last read. The content from the earlier Read tool_result in this conversation is still current.';
const out = annotateRiskyReadToolResult(cachedStub, { toolName: 'Read' });
assert.match(out, /does not prove the full file body/);
});
it('translates Anthropic output_config.effort into reasoning_effort', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
output_config: { effort: 'high' },
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.equal(capturedBody.reasoning_effort, 'high');
});
it('translates Anthropic output_config.format json_schema into response_format', async () => {
let capturedBody = null;
const schema = {
type: 'object',
properties: { title: { type: 'string' } },
required: ['title'],
additionalProperties: false,
};
await handleMessages({
model: 'claude-haiku-4-5',
output_config: { format: { type: 'json_schema', schema } },
messages: [{ role: 'user', content: 'extract a title' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{ index: 0, message: { role: 'assistant', content: '{"title":"x"}' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.equal(capturedBody.response_format?.type, 'json_schema');
assert.deepEqual(capturedBody.response_format.json_schema.schema, schema);
assert.equal(capturedBody.response_format.json_schema.strict, true);
});
it('extracts a stable per-user sub key from Claude Code metadata.user_id JSON', () => {
const userIdJson = JSON.stringify({
device_id: '42a4480e6ef9848582c0452f45ea155a89ed9b296d91700b7226973bb83f4495',
account_uuid: '',
session_id: '76f83892-d2e3-4248-8006-6d3c64955db4',
});
const a = extractCallerSubKey({ metadata: { user_id: userIdJson } });
assert.equal(typeof a, 'string');
assert.equal(a.length, 16);
// Same input -> same key (stability)
assert.equal(extractCallerSubKey({ metadata: { user_id: userIdJson } }), a);
// Different device_id -> different key (multi-user isolation)
const b = extractCallerSubKey({
metadata: { user_id: JSON.stringify({ device_id: 'different-device', session_id: '76f83892-d2e3-4248-8006-6d3c64955db4' }) },
});
assert.notEqual(a, b);
});
it('falls back through user_id fields when device_id is missing', () => {
const sessionOnly = extractCallerSubKey({
metadata: { user_id: JSON.stringify({ session_id: 'sess-1' }) },
});
const acctOnly = extractCallerSubKey({
metadata: { user_id: JSON.stringify({ account_uuid: 'acct-1' }) },
});
assert.equal(sessionOnly.length, 16);
assert.equal(acctOnly.length, 16);
assert.notEqual(sessionOnly, acctOnly);
});
it('treats plain-string user_id as the tag (older Anthropic SDK shape)', () => {
const out = extractCallerSubKey({ metadata: { user_id: 'plain-string-id' } });
assert.equal(out.length, 16);
});
it('returns empty when metadata or user_id is missing or empty', () => {
assert.equal(extractCallerSubKey({}), '');
assert.equal(extractCallerSubKey({ metadata: {} }), '');
assert.equal(extractCallerSubKey({ metadata: { user_id: '' } }), '');
assert.equal(extractCallerSubKey(null), '');
assert.equal(extractCallerSubKey(undefined), '');
});
it('augments context.callerKey with metadata.user_id sub-key on the chat handler call', async () => {
let capturedContext = null;
await handleMessages({
model: 'claude-sonnet-4.6',
metadata: { user_id: JSON.stringify({ device_id: 'device-A' }) },
messages: [{ role: 'user', content: 'hi' }],
}, {
callerKey: 'api:abc123',
async handleChatCompletions(_body, ctx) {
capturedContext = ctx;
return {
status: 200,
body: {
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.match(capturedContext.callerKey, /^api:abc123:user:[0-9a-f]{16}$/);
});
it('leaves callerKey unchanged when no metadata.user_id is present', async () => {
let capturedContext = null;
await handleMessages({
model: 'claude-sonnet-4.6',
messages: [{ role: 'user', content: 'hi' }],
}, {
callerKey: 'api:abc123',
async handleChatCompletions(_body, ctx) {
capturedContext = ctx;
return {
status: 200,
body: {
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.equal(capturedContext.callerKey, 'api:abc123');
});
it('drops Anthropic server-side tool types (advisor / web_search / code_execution) before forwarding', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
tools: [
{ type: 'advisor_20260301', name: 'advisor', model: 'claude-opus-4-6' },
{ type: 'web_search_20250305', name: 'web_search' },
{ type: 'code_execution_20250522', name: 'code_execution' },
{ name: 'Read', description: 'read files', input_schema: { type: 'object' } },
],
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
// Only the client-side Read tool survives translation; all three
// server-side types must be stripped.
assert.equal(capturedBody.tools?.length, 1);
assert.equal(capturedBody.tools[0].function.name, 'Read');
const names = capturedBody.tools.map(t => t.function.name);
for (const banned of ['advisor', 'web_search', 'code_execution']) {
assert.equal(names.includes(banned), false, `${banned} should not be forwarded`);
}
});
it('omits tools entirely when the only declared tool is server-side', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
tools: [{ type: 'advisor_20260301', name: 'advisor', model: 'claude-opus-4-6' }],
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
// No tools key at all (chat.js relies on this to skip preamble injection)
assert.equal(capturedBody.tools, undefined);
});
it('drops a forced server-side tool_choice when the matching tool was stripped', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
tools: [
{ type: 'advisor_20260301', name: 'advisor', model: 'claude-opus-4-6' },
{ name: 'Read', description: 'read files', input_schema: { type: 'object' } },
],
tool_choice: { type: 'tool', name: 'advisor' },
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.equal(capturedBody.tools.length, 1);
assert.equal(capturedBody.tools[0].function.name, 'Read');
assert.equal(capturedBody.tool_choice, undefined);
});
it('buffers streaming tool argument deltas until tool id and name arrive', async () => {
const result = await handleMessages({
model: 'claude-sonnet-4.6',
stream: true,
tools: [{ name: 'Read', description: 'read files', input_schema: { type: 'object' } }],
messages: [{ role: 'user', content: 'read package.json' }],
}, {
async handleChatCompletions() {
return {
status: 200,
stream: true,
async handler(res) {
res.write(chatChunk({ choices: [{ index: 0, delta: { role: 'assistant', content: '' }, finish_reason: null }] }));
res.write(chatChunk({ choices: [{ index: 0, delta: { tool_calls: [{ index: 0, function: { arguments: '{"file_path"' } }] }, finish_reason: null }] }));
res.write(chatChunk({ choices: [{ index: 0, delta: { tool_calls: [{ index: 0, id: 'call_1', function: { name: 'Read', arguments: ':"package.json"' } }] }, finish_reason: null }] }));
res.write(chatChunk({ choices: [{ index: 0, delta: { tool_calls: [{ index: 0, function: { arguments: '}' } }] }, finish_reason: null }] }));
res.write(chatChunk({ choices: [{ index: 0, delta: {}, finish_reason: 'tool_calls' }] }));
res.write(chatChunk({ choices: [], usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 } }));
res.end('data: [DONE]\n\n');
},
};
},
});
const res = fakeRes();
await result.handler(res);
const events = parseAnthropicEvents(res.body);
const blockStart = events.find(e => e.event === 'content_block_start');
assert.deepEqual(blockStart.data.content_block, {
type: 'tool_use',
id: 'call_1',
name: 'Read',
input: {},
});
const partialJson = events
.filter(e => e.event === 'content_block_delta' && e.data.delta?.type === 'input_json_delta')
.map(e => e.data.delta.partial_json)
.join('');
assert.equal(partialJson, '{"file_path":"package.json"}');
});
it('preserves thinking.type=adaptive (Claude Code 2.x sonnet default) when forwarding', async () => {
let capturedBody = null;
await handleMessages({
model: 'claude-sonnet-4.6',
thinking: { type: 'adaptive' },
output_config: { effort: 'high' },
messages: [{ role: 'user', content: 'hi' }],
}, {
async handleChatCompletions(body) {
capturedBody = body;
return {
status: 200,
body: {
model: body.model,
choices: [{ index: 0, message: { role: 'assistant', content: 'ok' }, finish_reason: 'stop' }],
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
},
};
},
});
assert.deepEqual(capturedBody.thinking, { type: 'adaptive' });
assert.equal(capturedBody.reasoning_effort, 'high');
});
it('detects explicit JSON requests without response_format', () => {
assert.equal(isExplicitJsonRequested([
{ role: 'user', content: 'Read package.json and answer only compact JSON with name and version.' },
]), true);
assert.equal(isExplicitJsonRequested([
{ role: 'user', content: 'Tell me about JSON as a data format.' },
]), false);
assert.equal(isExplicitJsonRequested([
{ role: 'user', content: 'Answer only compact JSON with name and version.' },
{ role: 'assistant', content: '{"name":"windsurf-api","version":"2.0.14"}' },
{ role: 'user', content: 'Now explain what changed in prose.' },
]), false);
});
it('extracts explicitly requested final JSON keys', () => {
assert.deepEqual(extractRequestedJsonKeys([
{ role: 'user', content: 'answer only compact JSON with exact keys readVersion, bashVersion, versionsMatch and no other keys.' },
]), ['readVersion', 'bashVersion', 'versionsMatch']);
assert.deepEqual(extractRequestedJsonKeys(applyJsonResponseHint([
{ role: 'user', content: 'answer only compact JSON with exact keys readVersion, bashVersion, versionsMatch and no other keys.' },
])), ['readVersion', 'bashVersion', 'versionsMatch']);
assert.deepEqual(extractRequestedJsonKeys([
{ role: 'user', content: 'answer only compact JSON with exact keys name and version.' },
{ role: 'assistant', content: '{"name":"windsurf-api","version":"2.0.14"}' },
{ role: 'user', content: 'Now answer normally.' },
]), []);
});
it('adds JSON-only guidance via a system message only (no user-content append)', () => {
// Earlier behavior also appended the hint to the latest user turn,
// which polluted the cascade reuse trajectory upstream and caused
// every follow-up turn to inherit JSON-only mode (#104). The fix is
// to inject ONLY a system message — it's authoritative for cascade
// routing and isn't persisted in the conversation history.
const original = { role: 'user', content: 'Read package.json and answer only compact JSON with name and version.' };
const messages = applyJsonResponseHint([original]);
assert.equal(messages[0].role, 'system');
assert.match(messages[0].content, /Respond with valid JSON only/);
assert.match(messages[0].content, /Preserve the exact JSON field names requested/);
assert.match(messages[0].content, /copying the full tool result/);
// The user message must be unchanged byte-for-byte. Anything appended
// here will leak into the cascade upstream's stored trajectory and
// contaminate later turns that don't ask for JSON.
assert.equal(messages[1].role, 'user');
assert.equal(messages[1].content, original.content,
'applyJsonResponseHint must not modify user content (cascade trajectory pollution, #104)');
});
it('does not modify user content even when later turns are tool_results', () => {
const userMsg = { role: 'user', content: 'Read package.json and answer only compact JSON with name and version.' };
const toolMsg = { role: 'tool', tool_call_id: 'toolu_1', content: '{"name":"windsurf-api","version":"2.0.11"}' };
const messages = applyJsonResponseHint([
userMsg,
{ role: 'assistant', content: '', tool_calls: [
{ id: 'toolu_1', type: 'function', function: { name: 'Read', arguments: '{"file_path":"package.json"}' } },
] },
toolMsg,
]);
const realUser = messages.find(m => m.role === 'user');
const toolResult = messages.find(m => m.role === 'tool');
assert.equal(realUser.content, userMsg.content, 'user content must remain pristine');
assert.equal(toolResult.content, toolMsg.content, 'tool content must remain pristine');
// System message carries the JSON guidance instead.
assert.match(messages[0].content, /Respond with valid JSON only/);
});
it('does not contaminate the cascade trajectory across turns (regression for #104)', () => {
// The bug: turn-1 says "respond in JSON only", proxy appends the
// JSON-only suffix to turn-1 user content, cascade upstream stores
// it in trajectory; turn-2 reuses the cascade for a plain "你好"
// greeting — and gets back `{"reply":"你好"}` because the upstream
// still sees the JSON-only instruction in the prior user turn.
//
// After the fix, applyJsonResponseHint only touches the system
// message. Building a turn-2 message list from the original (un-
// hinted) user content + a new user turn must contain ZERO trace
// of the JSON-only instruction.
const turn1User = { role: 'user', content: 'Answer only compact JSON with name and version.' };
const turn1Hinted = applyJsonResponseHint([turn1User]);
// Simulate what a caller would store in conversation history: the
// original user message, NOT the hinted one. (The proxy hands the
// hinted version to upstream but the conversation history feeds
// back the original.) The user content in the hinted list must
// equal the original — that's the invariant.
const userInHinted = turn1Hinted.find(m => m.role === 'user');
assert.equal(userInHinted.content, turn1User.content);
assert.doesNotMatch(userInHinted.content, /JSON only/i,
'user content must not carry the JSON-only instruction into the next turn');
});
it('projects final JSON onto requested keys using tool results when the model drifts', () => {
const messages = [
{ role: 'user', content: 'After both tool results, answer only compact JSON with exact keys readVersion, bashVersion, versionsMatch and no other keys.' },
{ role: 'assistant', content: null, tool_calls: [
{ id: 'call_read', type: 'function', function: { name: 'Read', arguments: '{"file_path":"package.json"}' } },
] },
{ role: 'tool', tool_call_id: 'call_read', content: '{"name":"windsurf-api","version":"2.0.11"}' },
{ role: 'assistant', content: null, tool_calls: [
{ id: 'call_bash', type: 'function', function: { name: 'Bash', arguments: '{"command":"node -p \\"require(\\\'./package.json\\\').version\\""}' } },
] },
{ role: 'tool', tool_call_id: 'call_bash', content: '2.0.11' },
];
assert.equal(
stabilizeJsonPayload('{"name":"windsurf-api","version":"2.0.11"}', messages),
'{"readVersion":"2.0.11","bashVersion":"2.0.11","versionsMatch":true}',
);
});
});
|