myavana-bot-test-core 2.1.7 → 2.1.8

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": "myavana-bot-test-core",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "Shared bot functionality with enhanced features",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -54,9 +54,9 @@ class CacheManager {
54
54
  // Create new cache
55
55
  console.log('🆕 Creating new cache for user:', userId);
56
56
  const cacheStartTime = performance.now();
57
-
57
+ const modelName = "gemini-3-flash-preview"
58
58
  const cache = await cacheAi.caches.create({
59
- model: googleAI.model('gemini-3-flash-preview'),
59
+ model: modelName,
60
60
  config: {
61
61
  systemInstruction: systemPrompt,
62
62
  },