@dnai/dynamicllm 0.2.0 → 0.2.1
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/dist/cli/init.js +9 -2
- package/package.json +1 -1
package/dist/cli/init.js
CHANGED
|
@@ -119,8 +119,15 @@ export async function init() {
|
|
|
119
119
|
console.log(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500");
|
|
120
120
|
console.log("");
|
|
121
121
|
// 1. Network directory
|
|
122
|
-
|
|
123
|
-
|
|
122
|
+
console.log(` Your network nodes will be stored in:`);
|
|
123
|
+
console.log(` ${defaultDir}`);
|
|
124
|
+
console.log("");
|
|
125
|
+
const changeDir = await rl.question(" Change location? [y/N]: ");
|
|
126
|
+
let networkDir = defaultDir;
|
|
127
|
+
if (changeDir.trim().toLowerCase() === "y") {
|
|
128
|
+
const dirAnswer = await rl.question(` New directory: `);
|
|
129
|
+
networkDir = dirAnswer.trim().replace(/^['"]|['"]$/g, "") || defaultDir;
|
|
130
|
+
}
|
|
124
131
|
if (!existsSync(networkDir)) {
|
|
125
132
|
const create = await rl.question(` Directory doesn't exist. Create it? [Y/n]: `);
|
|
126
133
|
if (create.trim().toLowerCase() !== "n") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dnai/dynamicllm",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "DynamicLLM — perspective engine for general intelligence. MCP server + CLI providing lens analysis, quality cultivation, and virus scan diagnostics.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/core/index.js",
|