ide-assi 0.276.0 → 0.278.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.
@@ -193658,11 +193658,11 @@ class IdeAi
193658
193658
  return o;
193659
193659
  };
193660
193660
 
193661
- #where2 = async (userPrompt, menuNm, tableDefinitions) => {
193661
+ #where2 = async (userPrompt, menuList, tableDefinitions) => {
193662
193662
 
193663
193663
  const o = await this.#invoke('/prompts/meta/U.스캐폴딩.txt', {
193664
193664
  "userPrompt": userPrompt,
193665
- "menuNm": menuNm,
193665
+ "menuNm": menuList,
193666
193666
  "tableDefinitions": tableDefinitions,
193667
193667
  });
193668
193668
 
@@ -193836,7 +193836,7 @@ class IdeAi
193836
193836
  title: elem.getAttribute("title"),
193837
193837
  })*/
193838
193838
 
193839
- const where = await this.#where2(userPrompt, title, await this.#getTableList());
193839
+ const where = await this.#where(`${title}에서 ${userPrompt}`, [{url: href, title: title}], await this.#getTableList());
193840
193840
  this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.");
193841
193841
 
193842
193842
  console.log(where);
@@ -193654,11 +193654,11 @@ class IdeAi
193654
193654
  return o;
193655
193655
  };
193656
193656
 
193657
- #where2 = async (userPrompt, menuNm, tableDefinitions) => {
193657
+ #where2 = async (userPrompt, menuList, tableDefinitions) => {
193658
193658
 
193659
193659
  const o = await this.#invoke('/prompts/meta/U.스캐폴딩.txt', {
193660
193660
  "userPrompt": userPrompt,
193661
- "menuNm": menuNm,
193661
+ "menuNm": menuList,
193662
193662
  "tableDefinitions": tableDefinitions,
193663
193663
  });
193664
193664
 
@@ -193832,7 +193832,7 @@ class IdeAi
193832
193832
  title: elem.getAttribute("title"),
193833
193833
  })*/
193834
193834
 
193835
- const where = await this.#where2(userPrompt, title, await this.#getTableList());
193835
+ const where = await this.#where(`${title}에서 ${userPrompt}`, [{url: href, title: title}], await this.#getTableList());
193836
193836
  this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.");
193837
193837
 
193838
193838
  console.log(where);
@@ -239,11 +239,11 @@ export class IdeAi
239
239
  return o;
240
240
  };
241
241
 
242
- #where2 = async (userPrompt, menuNm, tableDefinitions) => {
242
+ #where2 = async (userPrompt, menuList, tableDefinitions) => {
243
243
 
244
244
  const o = await this.#invoke('/prompts/meta/U.스캐폴딩.txt', {
245
245
  "userPrompt": userPrompt,
246
- "menuNm": menuNm,
246
+ "menuNm": menuList,
247
247
  "tableDefinitions": tableDefinitions,
248
248
  });
249
249
 
@@ -417,7 +417,7 @@ export class IdeAi
417
417
  title: elem.getAttribute("title"),
418
418
  })*/
419
419
 
420
- const where = await this.#where2(userPrompt, title, await this.#getTableList());
420
+ const where = await this.#where(`${title}에서 ${userPrompt}`, [{url: href, title: title}], await this.#getTableList());
421
421
  this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.")
422
422
 
423
423
  console.log(where);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.276.0",
4
+ "version": "0.278.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -239,11 +239,11 @@ export class IdeAi
239
239
  return o;
240
240
  };
241
241
 
242
- #where2 = async (userPrompt, menuNm, tableDefinitions) => {
242
+ #where2 = async (userPrompt, menuList, tableDefinitions) => {
243
243
 
244
244
  const o = await this.#invoke('/prompts/meta/U.스캐폴딩.txt', {
245
245
  "userPrompt": userPrompt,
246
- "menuNm": menuNm,
246
+ "menuNm": menuList,
247
247
  "tableDefinitions": tableDefinitions,
248
248
  });
249
249
 
@@ -417,7 +417,7 @@ export class IdeAi
417
417
  title: elem.getAttribute("title"),
418
418
  })*/
419
419
 
420
- const where = await this.#where2(userPrompt, title, await this.#getTableList());
420
+ const where = await this.#where(`${title}에서 ${userPrompt}`, [{url: href, title: title}], await this.#getTableList());
421
421
  this.#parent.addMessage("대상 메뉴와 테이블을 찾았습니다.")
422
422
 
423
423
  console.log(where);