netcore-blueprint 0.0.78 → 0.0.79
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/README.md +2 -2
- package/bin/create-assistant.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,6 @@ How to use the blueprint
|
|
|
10
10
|
- copy-module CopiedModuleName TargetFolder (Run in the folder Modules right outside the solution) (copy-module CopiedModuleName TargetFolder --force)
|
|
11
11
|
|
|
12
12
|
//AI Assistant
|
|
13
|
-
- create-assistant-
|
|
13
|
+
- create-assistant-item
|
|
14
14
|
- create-assistant
|
|
15
|
-
- copy-assistant
|
|
15
|
+
- copy-assistant-item
|
package/bin/create-assistant.js
CHANGED
|
@@ -23,9 +23,9 @@ if (!newAssistantName) {
|
|
|
23
23
|
// Template source
|
|
24
24
|
// =======================
|
|
25
25
|
|
|
26
|
-
const sourceAssistantName = "
|
|
26
|
+
const sourceAssistantName = "AIAssistantModule";
|
|
27
27
|
|
|
28
|
-
const assistantsTemplateRoot = path.join(__dirname, "..", "
|
|
28
|
+
const assistantsTemplateRoot = path.join(__dirname, "..", "Modules");
|
|
29
29
|
const sourceAssistantPath = path.join(assistantsTemplateRoot, sourceAssistantName);
|
|
30
30
|
|
|
31
31
|
// =======================
|