ide-assi 0.180.0 → 0.182.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.
@@ -193391,6 +193391,9 @@ class IdeAi
193391
193391
 
193392
193392
  constructor(parent) {
193393
193393
  this.#parent = parent;
193394
+
193395
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193396
+ console.log(a);
193394
193397
  }
193395
193398
 
193396
193399
  #createModel = () => {
@@ -193577,6 +193580,9 @@ class IdeAi
193577
193580
  throw new Error(o);
193578
193581
  }
193579
193582
 
193583
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193584
+ console.log(a);
193585
+
193580
193586
  return o.result;
193581
193587
  };
193582
193588
 
@@ -193387,6 +193387,9 @@ class IdeAi
193387
193387
 
193388
193388
  constructor(parent) {
193389
193389
  this.#parent = parent;
193390
+
193391
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193392
+ console.log(a);
193390
193393
  }
193391
193394
 
193392
193395
  #createModel = () => {
@@ -193573,6 +193576,9 @@ class IdeAi
193573
193576
  throw new Error(o);
193574
193577
  }
193575
193578
 
193579
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
193580
+ console.log(a);
193581
+
193576
193582
  return o.result;
193577
193583
  };
193578
193584
 
@@ -1,5 +1,5 @@
1
1
  import ninegrid from "ninegrid2";
2
- import {IdeUtils} from "./ideUtils.js";
2
+ import { IdeUtils } from "./ideUtils.js";
3
3
  import { HumanMessage, SystemMessage } from '@langchain/core/messages';
4
4
  import { ChatGoogleGenerativeAI } from "@langchain/google-genai";
5
5
  import { Ollama } from "@langchain/ollama";
@@ -15,6 +15,9 @@ export class IdeAi
15
15
 
16
16
  constructor(parent) {
17
17
  this.#parent = parent;
18
+
19
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
20
+ console.log(a);
18
21
  }
19
22
 
20
23
  #createModel = () => {
@@ -201,6 +204,9 @@ export class IdeAi
201
204
  throw new Error(o);
202
205
  }
203
206
 
207
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
208
+ console.log(a);
209
+
204
210
  return o.result;
205
211
  };
206
212
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.180.0",
4
+ "version": "0.182.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -1,5 +1,5 @@
1
1
  import ninegrid from "ninegrid2";
2
- import {IdeUtils} from "./ideUtils.js";
2
+ import { IdeUtils } from "./ideUtils.js";
3
3
  import { HumanMessage, SystemMessage } from '@langchain/core/messages';
4
4
  import { ChatGoogleGenerativeAI } from "@langchain/google-genai";
5
5
  import { Ollama } from "@langchain/ollama";
@@ -15,6 +15,9 @@ export class IdeAi
15
15
 
16
16
  constructor(parent) {
17
17
  this.#parent = parent;
18
+
19
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
20
+ console.log(a);
18
21
  }
19
22
 
20
23
  #createModel = () => {
@@ -201,6 +204,9 @@ export class IdeAi
201
204
  throw new Error(o);
202
205
  }
203
206
 
207
+ const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
208
+ console.log(a);
209
+
204
210
  return o.result;
205
211
  };
206
212