opc-agent 4.0.10 → 4.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/channels/telegram.d.ts +50 -13
- package/dist/channels/telegram.js +309 -84
- package/dist/providers/index.js +65 -25
- package/package.json +1 -1
- package/src/channels/telegram.ts +377 -94
- package/src/providers/index.ts +65 -26
package/dist/providers/index.js
CHANGED
|
@@ -406,17 +406,7 @@ class ClaudeCLIProvider {
|
|
|
406
406
|
}
|
|
407
407
|
}
|
|
408
408
|
async *chatStream(messages, systemPrompt) {
|
|
409
|
-
|
|
410
|
-
const parts = [];
|
|
411
|
-
if (systemPrompt) {
|
|
412
|
-
parts.push(`[System]: ${systemPrompt}`);
|
|
413
|
-
}
|
|
414
|
-
for (const m of messages) {
|
|
415
|
-
const role = m.role === 'user' ? 'Human' : 'Assistant';
|
|
416
|
-
parts.push(`${role}: ${m.content}`);
|
|
417
|
-
}
|
|
418
|
-
const prompt = parts.join('\n\n');
|
|
419
|
-
const args = ['-p', '--output-format', 'text'];
|
|
409
|
+
const args = ['-p', '--output-format', 'stream-json', '--include-partial-messages'];
|
|
420
410
|
if (this.model) {
|
|
421
411
|
args.push('--model', this.model);
|
|
422
412
|
}
|
|
@@ -431,7 +421,7 @@ class ClaudeCLIProvider {
|
|
|
431
421
|
args.push('--system-prompt-file', tmpFile);
|
|
432
422
|
}
|
|
433
423
|
const lastMsg = messages[messages.length - 1];
|
|
434
|
-
args.push(lastMsg?.content ??
|
|
424
|
+
args.push(lastMsg?.content ?? '');
|
|
435
425
|
const { spawn } = await Promise.resolve().then(() => __importStar(require('child_process')));
|
|
436
426
|
try {
|
|
437
427
|
const proc = spawn('claude', args, {
|
|
@@ -439,21 +429,71 @@ class ClaudeCLIProvider {
|
|
|
439
429
|
stdio: ['pipe', 'pipe', 'pipe'],
|
|
440
430
|
});
|
|
441
431
|
proc.stdin.end();
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
for await (const chunk of
|
|
445
|
-
|
|
432
|
+
let buffer = '';
|
|
433
|
+
let lastContent = '';
|
|
434
|
+
for await (const chunk of proc.stdout) {
|
|
435
|
+
buffer += chunk.toString();
|
|
436
|
+
const lines = buffer.split('\n');
|
|
437
|
+
buffer = lines.pop() ?? '';
|
|
438
|
+
for (const line of lines) {
|
|
439
|
+
const trimmed = line.trim();
|
|
440
|
+
if (!trimmed)
|
|
441
|
+
continue;
|
|
442
|
+
try {
|
|
443
|
+
const event = JSON.parse(trimmed);
|
|
444
|
+
// Handle partial message chunks (content_block_delta style)
|
|
445
|
+
if (event.type === 'content' && event.content) {
|
|
446
|
+
const newContent = event.content;
|
|
447
|
+
if (newContent.length > lastContent.length) {
|
|
448
|
+
yield newContent.slice(lastContent.length);
|
|
449
|
+
lastContent = newContent;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
// Handle assistant message with content array
|
|
453
|
+
if (event.type === 'assistant' && event.message?.content) {
|
|
454
|
+
for (const block of event.message.content) {
|
|
455
|
+
if (block.type === 'text' && block.text) {
|
|
456
|
+
const newText = block.text;
|
|
457
|
+
if (newText.length > lastContent.length) {
|
|
458
|
+
yield newText.slice(lastContent.length);
|
|
459
|
+
lastContent = newText;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
// Handle result message
|
|
465
|
+
if (event.type === 'result' && event.result) {
|
|
466
|
+
const resultText = typeof event.result === 'string' ? event.result : '';
|
|
467
|
+
if (resultText && resultText.length > lastContent.length) {
|
|
468
|
+
yield resultText.slice(lastContent.length);
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
catch {
|
|
473
|
+
// Not JSON, might be raw text
|
|
474
|
+
}
|
|
475
|
+
}
|
|
446
476
|
}
|
|
447
|
-
//
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
477
|
+
// Process remaining buffer
|
|
478
|
+
if (buffer.trim()) {
|
|
479
|
+
try {
|
|
480
|
+
const event = JSON.parse(buffer.trim());
|
|
481
|
+
if (event.type === 'result' && event.result) {
|
|
482
|
+
const resultText = typeof event.result === 'string' ? event.result : '';
|
|
483
|
+
if (resultText && resultText.length > lastContent.length) {
|
|
484
|
+
yield resultText.slice(lastContent.length);
|
|
485
|
+
}
|
|
453
486
|
}
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
487
|
+
}
|
|
488
|
+
catch {
|
|
489
|
+
// If not JSON, yield as raw text if we haven't yielded anything
|
|
490
|
+
if (!lastContent && buffer.trim()) {
|
|
491
|
+
yield buffer.trim();
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
await new Promise((resolve) => {
|
|
496
|
+
proc.on('close', () => resolve());
|
|
457
497
|
});
|
|
458
498
|
}
|
|
459
499
|
finally {
|