ide-assi 0.82.0 → 0.84.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.
@@ -193457,18 +193457,20 @@ class IdeAi
193457
193457
 
193458
193458
  this.#createModel();
193459
193459
 
193460
+ console.log(this.#model);
193461
+
193460
193462
  const systemMessage = "You are a helpful assistant.";
193461
193463
  const prompt = await IdeAiPrompt.generatePrompt('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
193462
193464
 
193463
193465
  //const prompt = await IdeAiPrompt.getDevelopActionClassification(userPrompt);
193464
193466
  //console.log(prompt);
193465
193467
 
193466
- const response = await this.#model.invoke([
193468
+ await this.#model.invoke([
193467
193469
  new SystemMessage(systemMessage),
193468
193470
  new HumanMessage(prompt),
193469
193471
  ]);
193470
193472
 
193471
- console.log(response);
193473
+ //console.log(response);
193472
193474
 
193473
193475
  }
193474
193476
  }
@@ -193453,18 +193453,20 @@ class IdeAi
193453
193453
 
193454
193454
  this.#createModel();
193455
193455
 
193456
+ console.log(this.#model);
193457
+
193456
193458
  const systemMessage = "You are a helpful assistant.";
193457
193459
  const prompt = await IdeAiPrompt.generatePrompt('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
193458
193460
 
193459
193461
  //const prompt = await IdeAiPrompt.getDevelopActionClassification(userPrompt);
193460
193462
  //console.log(prompt);
193461
193463
 
193462
- const response = await this.#model.invoke([
193464
+ await this.#model.invoke([
193463
193465
  new SystemMessage(systemMessage),
193464
193466
  new HumanMessage(prompt),
193465
193467
  ]);
193466
193468
 
193467
- console.log(response);
193469
+ //console.log(response);
193468
193470
 
193469
193471
  }
193470
193472
  }
@@ -177,6 +177,8 @@ export class IdeAi
177
177
 
178
178
  this.#createModel();
179
179
 
180
+ console.log(this.#model);
181
+
180
182
  const systemMessage = "You are a helpful assistant.";
181
183
  const prompt = await IdeAiPrompt.generatePrompt('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
182
184
 
@@ -188,7 +190,7 @@ export class IdeAi
188
190
  new HumanMessage(prompt),
189
191
  ]);
190
192
 
191
- console.log(response);
193
+ //console.log(response);
192
194
 
193
195
  }
194
196
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.82.0",
4
+ "version": "0.84.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -177,6 +177,8 @@ export class IdeAi
177
177
 
178
178
  this.#createModel();
179
179
 
180
+ console.log(this.#model);
181
+
180
182
  const systemMessage = "You are a helpful assistant.";
181
183
  const prompt = await IdeAiPrompt.generatePrompt('/prompts/meta/개발액션분류.txt', { "userPrompt": userPrompt });
182
184
 
@@ -188,7 +190,7 @@ export class IdeAi
188
190
  new HumanMessage(prompt),
189
191
  ]);
190
192
 
191
- console.log(response);
193
+ //console.log(response);
192
194
 
193
195
  }
194
196
  }