ide-assi 0.74.0 → 0.76.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
|
@@ -193266,7 +193266,7 @@ class IdeAiPrompt
|
|
|
193266
193266
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
193267
193267
|
|
|
193268
193268
|
//const response = await fetch('prompts/meta/개발액션분류.txt');//.then(res => res.text());
|
|
193269
|
-
const response = await fetch('prompts/meta/aaa.txt');
|
|
193269
|
+
const response = await fetch('/prompts/meta/aaa.txt');
|
|
193270
193270
|
console.log(response);
|
|
193271
193271
|
|
|
193272
193272
|
const result = await response.text();
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193262,7 +193262,7 @@ class IdeAiPrompt
|
|
|
193262
193262
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
193263
193263
|
|
|
193264
193264
|
//const response = await fetch('prompts/meta/개발액션분류.txt');//.then(res => res.text());
|
|
193265
|
-
const response = await fetch('prompts/meta/aaa.txt');
|
|
193265
|
+
const response = await fetch('/prompts/meta/aaa.txt');
|
|
193266
193266
|
console.log(response);
|
|
193267
193267
|
|
|
193268
193268
|
const result = await response.text();
|
|
@@ -9,7 +9,7 @@ export class IdeAiPrompt
|
|
|
9
9
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
10
10
|
|
|
11
11
|
//const response = await fetch('prompts/meta/개발액션분류.txt');//.then(res => res.text());
|
|
12
|
-
const response = await fetch('prompts/meta/aaa.txt');
|
|
12
|
+
const response = await fetch('/prompts/meta/aaa.txt');
|
|
13
13
|
console.log(response);
|
|
14
14
|
|
|
15
15
|
const result = await response.text();
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ export class IdeAiPrompt
|
|
|
9
9
|
static getDevelopActionClassification = async (userPrompt) => {
|
|
10
10
|
|
|
11
11
|
//const response = await fetch('prompts/meta/개발액션분류.txt');//.then(res => res.text());
|
|
12
|
-
const response = await fetch('prompts/meta/aaa.txt');
|
|
12
|
+
const response = await fetch('/prompts/meta/aaa.txt');
|
|
13
13
|
console.log(response);
|
|
14
14
|
|
|
15
15
|
const result = await response.text();
|