natureco-cli 5.6.10 → 5.6.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/package.json +1 -1
- package/src/commands/repl.js +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.12",
|
|
4
4
|
"description": "OpenClaw'dan daha güvenli, daha hızlı, daha ucuz AI agent CLI. Multi-agent, self-evolving skills, audit log, maliyet optimizasyonu ve NatureCo platform-native.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"natureco": "bin/natureco.js"
|
package/src/commands/repl.js
CHANGED
|
@@ -868,8 +868,8 @@ async function startRepl(args) {
|
|
|
868
868
|
providerApiKey,
|
|
869
869
|
apiMessages,
|
|
870
870
|
model,
|
|
871
|
-
// v5.6.
|
|
872
|
-
|
|
871
|
+
// v5.6.12: Callback bos - tam metin 'reply' olarak gelecek (non-stream mode)
|
|
872
|
+
() => {},
|
|
873
873
|
// Tool call callback — kullanıcıya göster
|
|
874
874
|
(toolEvent) => {
|
|
875
875
|
if (toolEvent.status === 'running') {
|
|
@@ -890,9 +890,8 @@ async function startRepl(args) {
|
|
|
890
890
|
}
|
|
891
891
|
}
|
|
892
892
|
);
|
|
893
|
-
// v5.6.
|
|
894
|
-
const fullReply =
|
|
895
|
-
global._replyBuffer = '';
|
|
893
|
+
// v5.6.12: Tam metin 'reply' olarak zaten geldi (non-stream mode)
|
|
894
|
+
const fullReply = String(reply || '');
|
|
896
895
|
// Bot adini al
|
|
897
896
|
const displayBotName = memory.botName || 'İchigo';
|
|
898
897
|
// v5.6.9: Tum model adlarini ve varyasyonlari temizle
|