@alex900530/claude-persistent-memory 1.0.3 → 1.0.4
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/bin/setup.js +2 -2
- package/config.default.js +1 -1
- package/package.json +1 -1
package/bin/setup.js
CHANGED
|
@@ -59,14 +59,14 @@ async function setupConfig() {
|
|
|
59
59
|
|
|
60
60
|
let endpoint = process.env.AZURE_OPENAI_ENDPOINT || '';
|
|
61
61
|
let apiKey = process.env.AZURE_OPENAI_KEY || '';
|
|
62
|
-
let deployment = process.env.AZURE_OPENAI_DEPLOYMENT || 'gpt-4
|
|
62
|
+
let deployment = process.env.AZURE_OPENAI_DEPLOYMENT || 'gpt-4-1';
|
|
63
63
|
|
|
64
64
|
if (!endpoint && !isPostinstall) {
|
|
65
65
|
log(' Azure OpenAI credentials not found in environment.');
|
|
66
66
|
log(' You can set them now or leave blank to configure later.');
|
|
67
67
|
endpoint = await ask(' AZURE_OPENAI_ENDPOINT: ');
|
|
68
68
|
apiKey = await ask(' AZURE_OPENAI_KEY: ');
|
|
69
|
-
const dep = await ask(' AZURE_OPENAI_DEPLOYMENT (default: gpt-4
|
|
69
|
+
const dep = await ask(' AZURE_OPENAI_DEPLOYMENT (default: gpt-4-1): ');
|
|
70
70
|
if (dep) deployment = dep;
|
|
71
71
|
}
|
|
72
72
|
|
package/config.default.js
CHANGED
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
azure: {
|
|
15
15
|
endpoint: process.env.AZURE_OPENAI_ENDPOINT || '',
|
|
16
16
|
apiKey: process.env.AZURE_OPENAI_KEY || '',
|
|
17
|
-
deployment: process.env.AZURE_OPENAI_DEPLOYMENT || 'gpt-4
|
|
17
|
+
deployment: process.env.AZURE_OPENAI_DEPLOYMENT || 'gpt-4-1',
|
|
18
18
|
apiVersion: '2024-12-01-preview',
|
|
19
19
|
},
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alex900530/claude-persistent-memory",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Persistent memory system for Claude Code — hybrid BM25 + vector search, LLM-driven structuring, automatic clustering",
|
|
5
5
|
"main": "lib/memory-db.js",
|
|
6
6
|
"bin": {
|