ide-assi 0.670.0 → 0.671.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 +5 -1
- package/dist/bundle.esm.js +5 -1
- package/dist/components/ideAi.js +5 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +5 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -203822,9 +203822,13 @@ console.log(el, href, title);
|
|
|
203822
203822
|
console.log(response);
|
|
203823
203823
|
|
|
203824
203824
|
let r = IdeUtils.extractResponse(response, "gemini");
|
|
203825
|
+
console.log(r);
|
|
203826
|
+
|
|
203827
|
+
/**
|
|
203825
203828
|
if ((r.startsWith("'") && r.endsWith("'")) || (r.startsWith('"') && r.endsWith('"')) || (r.startsWith('`') && r.endsWith('`'))) {
|
|
203826
203829
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
203827
|
-
}
|
|
203830
|
+
} */
|
|
203831
|
+
|
|
203828
203832
|
|
|
203829
203833
|
return r;
|
|
203830
203834
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203818,9 +203818,13 @@ console.log(el, href, title);
|
|
|
203818
203818
|
console.log(response);
|
|
203819
203819
|
|
|
203820
203820
|
let r = IdeUtils.extractResponse(response, "gemini");
|
|
203821
|
+
console.log(r);
|
|
203822
|
+
|
|
203823
|
+
/**
|
|
203821
203824
|
if ((r.startsWith("'") && r.endsWith("'")) || (r.startsWith('"') && r.endsWith('"')) || (r.startsWith('`') && r.endsWith('`'))) {
|
|
203822
203825
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
203823
|
-
}
|
|
203826
|
+
} */
|
|
203827
|
+
|
|
203824
203828
|
|
|
203825
203829
|
return r;
|
|
203826
203830
|
}
|
package/dist/components/ideAi.js
CHANGED
|
@@ -1277,9 +1277,13 @@ console.log(el, href, title);
|
|
|
1277
1277
|
console.log(response);
|
|
1278
1278
|
|
|
1279
1279
|
let r = IdeUtils.extractResponse(response, "gemini");
|
|
1280
|
+
console.log(r);
|
|
1281
|
+
|
|
1282
|
+
/**
|
|
1280
1283
|
if ((r.startsWith("'") && r.endsWith("'")) || (r.startsWith('"') && r.endsWith('"')) || (r.startsWith('`') && r.endsWith('`'))) {
|
|
1281
1284
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
1282
|
-
}
|
|
1285
|
+
} */
|
|
1286
|
+
|
|
1283
1287
|
|
|
1284
1288
|
return r;
|
|
1285
1289
|
}
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -1277,9 +1277,13 @@ console.log(el, href, title);
|
|
|
1277
1277
|
console.log(response);
|
|
1278
1278
|
|
|
1279
1279
|
let r = IdeUtils.extractResponse(response, "gemini");
|
|
1280
|
+
console.log(r);
|
|
1281
|
+
|
|
1282
|
+
/**
|
|
1280
1283
|
if ((r.startsWith("'") && r.endsWith("'")) || (r.startsWith('"') && r.endsWith('"')) || (r.startsWith('`') && r.endsWith('`'))) {
|
|
1281
1284
|
r = r.slice(1, -1); // 맨 앞, 맨 뒤 한 글자씩 제거
|
|
1282
|
-
}
|
|
1285
|
+
} */
|
|
1286
|
+
|
|
1283
1287
|
|
|
1284
1288
|
return r;
|
|
1285
1289
|
}
|