ide-assi 0.67.0 → 0.69.0
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/bundle.cjs.js
CHANGED
|
@@ -193265,9 +193265,15 @@ class IdeAiPrompt
|
|
|
193265
193265
|
|
|
193266
193266
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
193267
193267
|
|
|
193268
|
-
const
|
|
193268
|
+
const response = await fetch('prompts/meta/개발액션분류.txt').then(res => res);
|
|
193269
193269
|
|
|
193270
|
-
|
|
193270
|
+
console.log(response);
|
|
193271
|
+
|
|
193272
|
+
const result = await response.json();
|
|
193273
|
+
console.log(result);
|
|
193274
|
+
|
|
193275
|
+
|
|
193276
|
+
return response;
|
|
193271
193277
|
|
|
193272
193278
|
};
|
|
193273
193279
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193261,9 +193261,15 @@ class IdeAiPrompt
|
|
|
193261
193261
|
|
|
193262
193262
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
193263
193263
|
|
|
193264
|
-
const
|
|
193264
|
+
const response = await fetch('prompts/meta/개발액션분류.txt').then(res => res);
|
|
193265
193265
|
|
|
193266
|
-
|
|
193266
|
+
console.log(response);
|
|
193267
|
+
|
|
193268
|
+
const result = await response.json();
|
|
193269
|
+
console.log(result);
|
|
193270
|
+
|
|
193271
|
+
|
|
193272
|
+
return response;
|
|
193267
193273
|
|
|
193268
193274
|
};
|
|
193269
193275
|
}
|
|
@@ -8,9 +8,15 @@ export class IdeAiPrompt
|
|
|
8
8
|
|
|
9
9
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
10
10
|
|
|
11
|
-
const
|
|
11
|
+
const response = await fetch('prompts/meta/개발액션분류.txt').then(res => res);
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
console.log(response);
|
|
14
|
+
|
|
15
|
+
const result = await response.json();
|
|
16
|
+
console.log(result);
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
return response;
|
|
14
20
|
|
|
15
21
|
const template = await fs.readFile('prompts/meta/개발액션분류.txt', 'utf-8');
|
|
16
22
|
|
package/package.json
CHANGED
|
@@ -8,9 +8,15 @@ export class IdeAiPrompt
|
|
|
8
8
|
|
|
9
9
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
10
10
|
|
|
11
|
-
const
|
|
11
|
+
const response = await fetch('prompts/meta/개발액션분류.txt').then(res => res);
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
console.log(response);
|
|
14
|
+
|
|
15
|
+
const result = await response.json();
|
|
16
|
+
console.log(result);
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
return response;
|
|
14
20
|
|
|
15
21
|
const template = await fs.readFile('prompts/meta/개발액션분류.txt', 'utf-8');
|
|
16
22
|
|