natureco-cli 2.4.1 → 2.4.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -211,7 +211,7 @@ body::before{
211
211
  <div class="header-bot-name" id="header-bot-name">Nature Bot</div>
212
212
  <div class="header-bot-model" id="header-bot-model">NatureCo</div>
213
213
  </div>
214
- <div class="version-badge" id="version-badge">v2.4.1</div>
214
+ <div class="version-badge" id="version-badge">v2.4.3</div>
215
215
  </div>
216
216
  <div class="messages" id="messages"></div>
217
217
  <div class="input-area">
@@ -341,7 +341,7 @@ function dashboard(action) {
341
341
  apiKey: cfg.apiKey,
342
342
  defaultBot: cfg.defaultBot,
343
343
  defaultBotId: cfg.defaultBotId,
344
- version: 'v2.4.1',
344
+ version: 'v2.4.3',
345
345
  bots: cfg.bots || [],
346
346
  telegramToken: cfg.telegramToken || null,
347
347
  whatsappConnected: cfg.whatsappConnected || false,
@@ -128,7 +128,7 @@ async function startGateway() {
128
128
 
129
129
  async function runGatewayWorker() {
130
130
  // This runs in the background
131
- log('gateway', 'Starting NatureCo Gateway v2.3.2...', 'green');
131
+ log('gateway', 'Starting NatureCo Gateway v2.4.3...', 'green');
132
132
 
133
133
  // Load config
134
134
  const { getConfig } = require('../utils/config');
@@ -293,13 +293,23 @@ async function startWhatsAppProvider(sessionDir, config) {
293
293
  try {
294
294
  // v2.x: Send to universal provider (Groq/OpenAI/Anthropic)
295
295
  const { sendMessage } = require('../utils/api');
296
+ const { getMemoryPrompt } = require('../utils/memory');
297
+
296
298
  log('whatsapp', 'Sending to AI provider...', 'cyan');
297
299
 
298
- // Use WhatsApp-specific conversation ID for context
299
- const conversationId = `whatsapp_${sender}`;
300
+ // Use WhatsApp-specific conversation ID for persistent history
301
+ const conversationId = `whatsapp_${sender.replace(/\D/g, '')}`;
302
+
303
+ // Use same botId as terminal for shared memory
304
+ const botId = 'universal-provider';
305
+ const memoryPrompt = getMemoryPrompt(botId);
300
306
 
301
- // WhatsApp system prompt
302
- const systemPrompt = `You are a helpful WhatsApp assistant. Keep responses concise and friendly. Use emojis when appropriate. If users ask for file operations or system commands, politely explain that those features are available in the terminal version.`;
307
+ // WhatsApp system prompt with memory
308
+ let systemPrompt = `You are a helpful WhatsApp assistant. Keep responses concise and friendly. Use emojis when appropriate. If users ask for file operations or system commands, politely explain that those features are available in the terminal version.`;
309
+
310
+ if (memoryPrompt) {
311
+ systemPrompt += '\n\n' + memoryPrompt;
312
+ }
303
313
 
304
314
  const response = await sendMessage(null, null, messageText, conversationId, systemPrompt);
305
315
  const reply = response?.reply || response?.message || '';
package/src/utils/api.js CHANGED
@@ -1,4 +1,4 @@
1
- // NatureCo CLI v2.4.1 - Universal LLM Provider Support
1
+ // NatureCo CLI v2.4.3 - Universal LLM Provider Support
2
2
  // Supports: OpenAI, Groq, Together, Fireworks, Perplexity, Mistral, DeepSeek, OpenRouter, Ollama, LM Studio, Anthropic
3
3
 
4
4
  const fs = require('fs');
@@ -119,18 +119,28 @@ function addMemoryEntry(botId, key, value) {
119
119
  function extractMemoryFromMessage(message) {
120
120
  const extracted = [];
121
121
 
122
- // Name patterns: "adım X", "ben X'im", "ismim X"
123
- const namePatterns = [
124
- /ad[ıi]m\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)/i,
125
- /ben\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)['']?[ıi]?m/i,
126
- /[iı]smim\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)/i,
127
- ];
128
-
129
- for (const pattern of namePatterns) {
130
- const match = message.match(pattern);
131
- if (match) {
132
- extracted.push({ key: 'name', value: match[1] });
133
- break;
122
+ // Question words that should NOT trigger name extraction
123
+ const questionWords = ['ne', 'kim', 'nasıl', 'neden', 'niçin', 'nerede', 'nereye', 'nereden', 'hangi', 'kaç', 'ne zaman'];
124
+
125
+ // Check if message is a question
126
+ const isQuestion = questionWords.some(q => message.toLowerCase().includes(q)) || message.includes('?');
127
+
128
+ // Name patterns: "adım X", "ben X'im", "ismim X", "benim adım X"
129
+ // Only extract if NOT a question
130
+ if (!isQuestion) {
131
+ const namePatterns = [
132
+ /benim\s+ad[ıi]m\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)/i,
133
+ /ad[ıi]m\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)/i,
134
+ /ben\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)['']?[ıi]?m/i,
135
+ /[iı]smim\s+([A-ZÇĞİÖŞÜ][a-zçğıöşü]+)/i,
136
+ ];
137
+
138
+ for (const pattern of namePatterns) {
139
+ const match = message.match(pattern);
140
+ if (match) {
141
+ extracted.push({ key: 'name', value: match[1] });
142
+ break;
143
+ }
134
144
  }
135
145
  }
136
146