ide-assi 0.180.0 → 0.181.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 +3 -0
- package/dist/bundle.esm.js +3 -0
- package/dist/components/ideAi.js +4 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +4 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -193577,6 +193577,9 @@ class IdeAi
|
|
|
193577
193577
|
throw new Error(o);
|
|
193578
193578
|
}
|
|
193579
193579
|
|
|
193580
|
+
const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
|
|
193581
|
+
console.log(a);
|
|
193582
|
+
|
|
193580
193583
|
return o.result;
|
|
193581
193584
|
};
|
|
193582
193585
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193573,6 +193573,9 @@ class IdeAi
|
|
|
193573
193573
|
throw new Error(o);
|
|
193574
193574
|
}
|
|
193575
193575
|
|
|
193576
|
+
const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
|
|
193577
|
+
console.log(a);
|
|
193578
|
+
|
|
193576
193579
|
return o.result;
|
|
193577
193580
|
};
|
|
193578
193581
|
|
package/dist/components/ideAi.js
CHANGED
|
@@ -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";
|
|
@@ -201,6 +201,9 @@ export class IdeAi
|
|
|
201
201
|
throw new Error(o);
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
|
|
205
|
+
console.log(a);
|
|
206
|
+
|
|
204
207
|
return o.result;
|
|
205
208
|
};
|
|
206
209
|
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -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";
|
|
@@ -201,6 +201,9 @@ export class IdeAi
|
|
|
201
201
|
throw new Error(o);
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
const a = IdeUtils.transformPath("aaa-bbb/ccc-ddd");
|
|
205
|
+
console.log(a);
|
|
206
|
+
|
|
204
207
|
return o.result;
|
|
205
208
|
};
|
|
206
209
|
|