@typia/langchain 13.0.0-dev.20260701.1 → 13.0.0-dev.20260703.1

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.
@@ -0,0 +1,31 @@
1
+ function getAugmentedNamespace(n) {
2
+ if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
3
+ var f = n.default;
4
+ if (typeof f == "function") {
5
+ var a = function a () {
6
+ var isInstance = false;
7
+ try {
8
+ isInstance = this instanceof a;
9
+ } catch {}
10
+ if (isInstance) {
11
+ return Reflect.construct(f, arguments, this.constructor);
12
+ }
13
+ return f.apply(this, arguments);
14
+ };
15
+ a.prototype = f.prototype;
16
+ } else a = {};
17
+ Object.defineProperty(a, '__esModule', {value: true});
18
+ Object.keys(n).forEach(function (k) {
19
+ var d = Object.getOwnPropertyDescriptor(n, k);
20
+ Object.defineProperty(a, k, d.get ? d : {
21
+ enumerable: true,
22
+ get: function () {
23
+ return n[k];
24
+ }
25
+ });
26
+ });
27
+ return a;
28
+ }
29
+
30
+ export { getAugmentedNamespace };
31
+ //# sourceMappingURL=_commonjsHelpers.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_commonjsHelpers.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,7 @@
1
+ import * as tools from '@langchain/core/tools';
2
+ import { getAugmentedNamespace } from './_commonjsHelpers.mjs';
3
+
4
+ var require$$0 = /*@__PURE__*/getAugmentedNamespace(tools);
5
+
6
+ export { require$$0 as default };
7
+ //# sourceMappingURL=tools.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tools.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;"}
@@ -1,5 +1,5 @@
1
1
  import { __exports as LangChainToolsRegistrar$1 } from '../_virtual/LangChainToolsRegistrar.mjs';
2
- import require$$0 from '@langchain/core/tools';
2
+ import require$$0 from '../_virtual/tools.mjs';
3
3
  import require$$1 from '@typia/utils';
4
4
 
5
5
  var __awaiter = (LangChainToolsRegistrar$1 && LangChainToolsRegistrar$1.__awaiter) || function (thisArg, _arguments, P, generator) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typia/langchain",
3
- "version": "13.0.0-dev.20260701.1",
3
+ "version": "13.0.0-dev.20260703.1",
4
4
  "description": "LangChain.js integration for typia",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "homepage": "https://typia.io",
24
24
  "dependencies": {
25
- "@typia/interface": "^13.0.0-dev.20260701.1",
26
- "@typia/utils": "^13.0.0-dev.20260701.1"
25
+ "@typia/interface": "^13.0.0-dev.20260703.1",
26
+ "@typia/utils": "^13.0.0-dev.20260703.1"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "@langchain/core": ">=1.0.0"