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 +1 -1
- package/src/cacheManager.js +2 -2
package/package.json
CHANGED
package/src/cacheManager.js
CHANGED
|
@@ -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:
|
|
59
|
+
model: modelName,
|
|
60
60
|
config: {
|
|
61
61
|
systemInstruction: systemPrompt,
|
|
62
62
|
},
|