@botbotgo/runtime 1.0.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.
Files changed (313) hide show
  1. package/.github/workflows/ci.yml +46 -0
  2. package/.github/workflows/release.yml +79 -0
  3. package/README.md +71 -0
  4. package/config/examples/memory.yaml +39 -0
  5. package/config/examples/model.yaml +21 -0
  6. package/config/examples/runtime.yaml +44 -0
  7. package/config/examples/skills.yaml +8 -0
  8. package/config/examples/tool.yaml +16 -0
  9. package/dist/config/index.d.ts +7 -0
  10. package/dist/config/index.d.ts.map +1 -0
  11. package/dist/config/index.js +4 -0
  12. package/dist/config/index.js.map +1 -0
  13. package/dist/config/loader.d.ts +41 -0
  14. package/dist/config/loader.d.ts.map +1 -0
  15. package/dist/config/loader.js +140 -0
  16. package/dist/config/loader.js.map +1 -0
  17. package/dist/config/resolveRuntimeConfig.d.ts +83 -0
  18. package/dist/config/resolveRuntimeConfig.d.ts.map +1 -0
  19. package/dist/config/resolveRuntimeConfig.js +85 -0
  20. package/dist/config/resolveRuntimeConfig.js.map +1 -0
  21. package/dist/config/resources.d.ts +112 -0
  22. package/dist/config/resources.d.ts.map +1 -0
  23. package/dist/config/resources.js +20 -0
  24. package/dist/config/resources.js.map +1 -0
  25. package/dist/config/runtimeConfigLoader.d.ts +28 -0
  26. package/dist/config/runtimeConfigLoader.d.ts.map +1 -0
  27. package/dist/config/runtimeConfigLoader.js +38 -0
  28. package/dist/config/runtimeConfigLoader.js.map +1 -0
  29. package/dist/index.d.ts +9 -0
  30. package/dist/index.d.ts.map +1 -0
  31. package/dist/index.js +5 -0
  32. package/dist/index.js.map +1 -0
  33. package/dist/runtime/agentMiddleware.d.ts +3 -0
  34. package/dist/runtime/agentMiddleware.d.ts.map +1 -0
  35. package/dist/runtime/agentMiddleware.js +2 -0
  36. package/dist/runtime/agentMiddleware.js.map +1 -0
  37. package/dist/runtime/bootstrap/runtimeFactory.d.ts +7 -0
  38. package/dist/runtime/bootstrap/runtimeFactory.d.ts.map +1 -0
  39. package/dist/runtime/bootstrap/runtimeFactory.js +139 -0
  40. package/dist/runtime/bootstrap/runtimeFactory.js.map +1 -0
  41. package/dist/runtime/bootstrap/runtimeModuleInitializer.d.ts +5 -0
  42. package/dist/runtime/bootstrap/runtimeModuleInitializer.d.ts.map +1 -0
  43. package/dist/runtime/bootstrap/runtimeModuleInitializer.js +32 -0
  44. package/dist/runtime/bootstrap/runtimeModuleInitializer.js.map +1 -0
  45. package/dist/runtime/context/agentContext.d.ts +5 -0
  46. package/dist/runtime/context/agentContext.d.ts.map +1 -0
  47. package/dist/runtime/context/agentContext.js +19 -0
  48. package/dist/runtime/context/agentContext.js.map +1 -0
  49. package/dist/runtime/context/globalContext.d.ts +19 -0
  50. package/dist/runtime/context/globalContext.d.ts.map +1 -0
  51. package/dist/runtime/context/globalContext.js +47 -0
  52. package/dist/runtime/context/globalContext.js.map +1 -0
  53. package/dist/runtime/events/eventPublisher.d.ts +15 -0
  54. package/dist/runtime/events/eventPublisher.d.ts.map +1 -0
  55. package/dist/runtime/events/eventPublisher.js +23 -0
  56. package/dist/runtime/events/eventPublisher.js.map +1 -0
  57. package/dist/runtime/execution/agentRunExecutor.d.ts +38 -0
  58. package/dist/runtime/execution/agentRunExecutor.d.ts.map +1 -0
  59. package/dist/runtime/execution/agentRunExecutor.js +378 -0
  60. package/dist/runtime/execution/agentRunExecutor.js.map +1 -0
  61. package/dist/runtime/execution/agentRunExecutor.types.d.ts +37 -0
  62. package/dist/runtime/execution/agentRunExecutor.types.d.ts.map +1 -0
  63. package/dist/runtime/execution/agentRunExecutor.types.js +2 -0
  64. package/dist/runtime/execution/agentRunExecutor.types.js.map +1 -0
  65. package/dist/runtime/execution/agentRunProgress.d.ts +8 -0
  66. package/dist/runtime/execution/agentRunProgress.d.ts.map +1 -0
  67. package/dist/runtime/execution/agentRunProgress.js +46 -0
  68. package/dist/runtime/execution/agentRunProgress.js.map +1 -0
  69. package/dist/runtime/execution/agentRunState.d.ts +44 -0
  70. package/dist/runtime/execution/agentRunState.d.ts.map +1 -0
  71. package/dist/runtime/execution/agentRunState.js +17 -0
  72. package/dist/runtime/execution/agentRunState.js.map +1 -0
  73. package/dist/runtime/execution/policies/runCompletionPolicy.d.ts +5 -0
  74. package/dist/runtime/execution/policies/runCompletionPolicy.d.ts.map +1 -0
  75. package/dist/runtime/execution/policies/runCompletionPolicy.js +30 -0
  76. package/dist/runtime/execution/policies/runCompletionPolicy.js.map +1 -0
  77. package/dist/runtime/execution/policies/runErrorPolicy.d.ts +7 -0
  78. package/dist/runtime/execution/policies/runErrorPolicy.d.ts.map +1 -0
  79. package/dist/runtime/execution/policies/runErrorPolicy.js +40 -0
  80. package/dist/runtime/execution/policies/runErrorPolicy.js.map +1 -0
  81. package/dist/runtime/execution/policies/runPromptBuilder.d.ts +10 -0
  82. package/dist/runtime/execution/policies/runPromptBuilder.d.ts.map +1 -0
  83. package/dist/runtime/execution/policies/runPromptBuilder.js +34 -0
  84. package/dist/runtime/execution/policies/runPromptBuilder.js.map +1 -0
  85. package/dist/runtime/execution/policies/runSummaryFormatter.d.ts +6 -0
  86. package/dist/runtime/execution/policies/runSummaryFormatter.d.ts.map +1 -0
  87. package/dist/runtime/execution/policies/runSummaryFormatter.js +47 -0
  88. package/dist/runtime/execution/policies/runSummaryFormatter.js.map +1 -0
  89. package/dist/runtime/execution/policies/runtimeDelay.d.ts +4 -0
  90. package/dist/runtime/execution/policies/runtimeDelay.d.ts.map +1 -0
  91. package/dist/runtime/execution/policies/runtimeDelay.js +6 -0
  92. package/dist/runtime/execution/policies/runtimeDelay.js.map +1 -0
  93. package/dist/runtime/execution/policies/toolConfigReader.d.ts +8 -0
  94. package/dist/runtime/execution/policies/toolConfigReader.d.ts.map +1 -0
  95. package/dist/runtime/execution/policies/toolConfigReader.js +91 -0
  96. package/dist/runtime/execution/policies/toolConfigReader.js.map +1 -0
  97. package/dist/runtime/human-loop/consoleHumanLoop.d.ts +21 -0
  98. package/dist/runtime/human-loop/consoleHumanLoop.d.ts.map +1 -0
  99. package/dist/runtime/human-loop/consoleHumanLoop.js +102 -0
  100. package/dist/runtime/human-loop/consoleHumanLoop.js.map +1 -0
  101. package/dist/runtime/human-loop/humanLoop.d.ts +44 -0
  102. package/dist/runtime/human-loop/humanLoop.d.ts.map +1 -0
  103. package/dist/runtime/human-loop/humanLoop.js +36 -0
  104. package/dist/runtime/human-loop/humanLoop.js.map +1 -0
  105. package/dist/runtime/index.d.ts +10 -0
  106. package/dist/runtime/index.d.ts.map +1 -0
  107. package/dist/runtime/index.js +6 -0
  108. package/dist/runtime/index.js.map +1 -0
  109. package/dist/runtime/middleware/agentToolMiddleware.d.ts +30 -0
  110. package/dist/runtime/middleware/agentToolMiddleware.d.ts.map +1 -0
  111. package/dist/runtime/middleware/agentToolMiddleware.js +259 -0
  112. package/dist/runtime/middleware/agentToolMiddleware.js.map +1 -0
  113. package/dist/runtime/middleware/commandPolicy.d.ts +8 -0
  114. package/dist/runtime/middleware/commandPolicy.d.ts.map +1 -0
  115. package/dist/runtime/middleware/commandPolicy.js +55 -0
  116. package/dist/runtime/middleware/commandPolicy.js.map +1 -0
  117. package/dist/runtime/middleware/frameworkPrompt.d.ts +4 -0
  118. package/dist/runtime/middleware/frameworkPrompt.d.ts.map +1 -0
  119. package/dist/runtime/middleware/frameworkPrompt.js +44 -0
  120. package/dist/runtime/middleware/frameworkPrompt.js.map +1 -0
  121. package/dist/runtime/middleware/index.d.ts +4 -0
  122. package/dist/runtime/middleware/index.d.ts.map +1 -0
  123. package/dist/runtime/middleware/index.js +3 -0
  124. package/dist/runtime/middleware/index.js.map +1 -0
  125. package/dist/runtime/middleware/skillPathMap.d.ts +3 -0
  126. package/dist/runtime/middleware/skillPathMap.d.ts.map +1 -0
  127. package/dist/runtime/middleware/skillPathMap.js +44 -0
  128. package/dist/runtime/middleware/skillPathMap.js.map +1 -0
  129. package/dist/runtime/middleware/toolArgsNormalizer.d.ts +21 -0
  130. package/dist/runtime/middleware/toolArgsNormalizer.d.ts.map +1 -0
  131. package/dist/runtime/middleware/toolArgsNormalizer.js +227 -0
  132. package/dist/runtime/middleware/toolArgsNormalizer.js.map +1 -0
  133. package/dist/runtime/middleware/toolCallGuard.d.ts +8 -0
  134. package/dist/runtime/middleware/toolCallGuard.d.ts.map +1 -0
  135. package/dist/runtime/middleware/toolCallGuard.js +60 -0
  136. package/dist/runtime/middleware/toolCallGuard.js.map +1 -0
  137. package/dist/runtime/middleware/toolFsHandlers.d.ts +12 -0
  138. package/dist/runtime/middleware/toolFsHandlers.d.ts.map +1 -0
  139. package/dist/runtime/middleware/toolFsHandlers.js +79 -0
  140. package/dist/runtime/middleware/toolFsHandlers.js.map +1 -0
  141. package/dist/runtime/middleware/toolRequestParser.d.ts +14 -0
  142. package/dist/runtime/middleware/toolRequestParser.d.ts.map +1 -0
  143. package/dist/runtime/middleware/toolRequestParser.js +72 -0
  144. package/dist/runtime/middleware/toolRequestParser.js.map +1 -0
  145. package/dist/runtime/middleware/types.d.ts +87 -0
  146. package/dist/runtime/middleware/types.d.ts.map +1 -0
  147. package/dist/runtime/middleware/types.js +3 -0
  148. package/dist/runtime/middleware/types.js.map +1 -0
  149. package/dist/runtime/providers/backendResolver.d.ts +26 -0
  150. package/dist/runtime/providers/backendResolver.d.ts.map +1 -0
  151. package/dist/runtime/providers/backendResolver.js +73 -0
  152. package/dist/runtime/providers/backendResolver.js.map +1 -0
  153. package/dist/runtime/providers/index.d.ts +14 -0
  154. package/dist/runtime/providers/index.d.ts.map +1 -0
  155. package/dist/runtime/providers/index.js +10 -0
  156. package/dist/runtime/providers/index.js.map +1 -0
  157. package/dist/runtime/providers/langchainRuntime.d.ts +11 -0
  158. package/dist/runtime/providers/langchainRuntime.d.ts.map +1 -0
  159. package/dist/runtime/providers/langchainRuntime.js +45 -0
  160. package/dist/runtime/providers/langchainRuntime.js.map +1 -0
  161. package/dist/runtime/providers/localShellBackend.d.ts +10 -0
  162. package/dist/runtime/providers/localShellBackend.d.ts.map +1 -0
  163. package/dist/runtime/providers/localShellBackend.js +23 -0
  164. package/dist/runtime/providers/localShellBackend.js.map +1 -0
  165. package/dist/runtime/providers/openaiDeepAgent.d.ts +9 -0
  166. package/dist/runtime/providers/openaiDeepAgent.d.ts.map +1 -0
  167. package/dist/runtime/providers/openaiDeepAgent.js +7 -0
  168. package/dist/runtime/providers/openaiDeepAgent.js.map +1 -0
  169. package/dist/runtime/providers/openaiLocalAgent.d.ts +17 -0
  170. package/dist/runtime/providers/openaiLocalAgent.d.ts.map +1 -0
  171. package/dist/runtime/providers/openaiLocalAgent.js +26 -0
  172. package/dist/runtime/providers/openaiLocalAgent.js.map +1 -0
  173. package/dist/runtime/providers/openaiLocalAgentFactory.d.ts +36 -0
  174. package/dist/runtime/providers/openaiLocalAgentFactory.d.ts.map +1 -0
  175. package/dist/runtime/providers/openaiLocalAgentFactory.js +139 -0
  176. package/dist/runtime/providers/openaiLocalAgentFactory.js.map +1 -0
  177. package/dist/runtime/providers/shared/agentProbe.d.ts +4 -0
  178. package/dist/runtime/providers/shared/agentProbe.d.ts.map +1 -0
  179. package/dist/runtime/providers/shared/agentProbe.js +17 -0
  180. package/dist/runtime/providers/shared/agentProbe.js.map +1 -0
  181. package/dist/runtime/providers/shared/moduleFallback.d.ts +2 -0
  182. package/dist/runtime/providers/shared/moduleFallback.d.ts.map +1 -0
  183. package/dist/runtime/providers/shared/moduleFallback.js +34 -0
  184. package/dist/runtime/providers/shared/moduleFallback.js.map +1 -0
  185. package/dist/runtime/providers/shared/resourceCloser.d.ts +6 -0
  186. package/dist/runtime/providers/shared/resourceCloser.d.ts.map +1 -0
  187. package/dist/runtime/providers/shared/resourceCloser.js +30 -0
  188. package/dist/runtime/providers/shared/resourceCloser.js.map +1 -0
  189. package/dist/runtime/runtimeService.d.ts +109 -0
  190. package/dist/runtime/runtimeService.d.ts.map +1 -0
  191. package/dist/runtime/runtimeService.js +90 -0
  192. package/dist/runtime/runtimeService.js.map +1 -0
  193. package/dist/runtime/stream/agentMessages.d.ts +40 -0
  194. package/dist/runtime/stream/agentMessages.d.ts.map +1 -0
  195. package/dist/runtime/stream/agentMessages.js +44 -0
  196. package/dist/runtime/stream/agentMessages.js.map +1 -0
  197. package/dist/runtime/stream/agentStream.d.ts +31 -0
  198. package/dist/runtime/stream/agentStream.d.ts.map +1 -0
  199. package/dist/runtime/stream/agentStream.js +106 -0
  200. package/dist/runtime/stream/agentStream.js.map +1 -0
  201. package/dist/runtime/stream/messageSummary.d.ts +20 -0
  202. package/dist/runtime/stream/messageSummary.d.ts.map +1 -0
  203. package/dist/runtime/stream/messageSummary.js +150 -0
  204. package/dist/runtime/stream/messageSummary.js.map +1 -0
  205. package/dist/runtime/stream/runArtifacts.d.ts +9 -0
  206. package/dist/runtime/stream/runArtifacts.d.ts.map +1 -0
  207. package/dist/runtime/stream/runArtifacts.js +48 -0
  208. package/dist/runtime/stream/runArtifacts.js.map +1 -0
  209. package/dist/state/index.d.ts +7 -0
  210. package/dist/state/index.d.ts.map +1 -0
  211. package/dist/state/index.js +4 -0
  212. package/dist/state/index.js.map +1 -0
  213. package/dist/state/runState.d.ts +36 -0
  214. package/dist/state/runState.d.ts.map +1 -0
  215. package/dist/state/runState.js +51 -0
  216. package/dist/state/runState.js.map +1 -0
  217. package/dist/state/todos.d.ts +19 -0
  218. package/dist/state/todos.d.ts.map +1 -0
  219. package/dist/state/todos.js +45 -0
  220. package/dist/state/todos.js.map +1 -0
  221. package/dist/state/workspaceRunSession.d.ts +32 -0
  222. package/dist/state/workspaceRunSession.d.ts.map +1 -0
  223. package/dist/state/workspaceRunSession.js +67 -0
  224. package/dist/state/workspaceRunSession.js.map +1 -0
  225. package/dist/state/workspaceState.d.ts +94 -0
  226. package/dist/state/workspaceState.d.ts.map +1 -0
  227. package/dist/state/workspaceState.js +119 -0
  228. package/dist/state/workspaceState.js.map +1 -0
  229. package/dist/types.d.ts +2 -0
  230. package/dist/types.d.ts.map +1 -0
  231. package/dist/types.js +2 -0
  232. package/dist/types.js.map +1 -0
  233. package/example/.tsbuildinfo +1 -0
  234. package/example/build/.tsbuildinfo +1 -0
  235. package/example/config/memory.yaml +35 -0
  236. package/example/config/model.yaml +14 -0
  237. package/example/config/runtime.yaml +46 -0
  238. package/example/config/tool.yaml +24 -0
  239. package/example/index.ts +159 -0
  240. package/example/package-lock.json +1396 -0
  241. package/example/package.json +26 -0
  242. package/example/serve-output.mjs +52 -0
  243. package/example/tsconfig.json +19 -0
  244. package/package.json +73 -0
  245. package/scripts/resolve-deps.js +40 -0
  246. package/src/config/index.ts +29 -0
  247. package/src/config/loader.ts +174 -0
  248. package/src/config/resolveRuntimeConfig.ts +160 -0
  249. package/src/config/resources.ts +152 -0
  250. package/src/config/runtimeConfigLoader.ts +68 -0
  251. package/src/external-modules.d.ts +20 -0
  252. package/src/index.ts +36 -0
  253. package/src/runtime/agentMiddleware.ts +6 -0
  254. package/src/runtime/bootstrap/runtimeFactory.ts +212 -0
  255. package/src/runtime/bootstrap/runtimeModuleInitializer.ts +34 -0
  256. package/src/runtime/context/agentContext.ts +24 -0
  257. package/src/runtime/context/globalContext.ts +70 -0
  258. package/src/runtime/events/eventPublisher.ts +45 -0
  259. package/src/runtime/execution/agentRunExecutor.ts +499 -0
  260. package/src/runtime/execution/agentRunExecutor.types.ts +39 -0
  261. package/src/runtime/execution/agentRunProgress.ts +67 -0
  262. package/src/runtime/execution/agentRunState.ts +66 -0
  263. package/src/runtime/execution/policies/runCompletionPolicy.ts +30 -0
  264. package/src/runtime/execution/policies/runErrorPolicy.ts +50 -0
  265. package/src/runtime/execution/policies/runPromptBuilder.ts +39 -0
  266. package/src/runtime/execution/policies/runSummaryFormatter.ts +57 -0
  267. package/src/runtime/execution/policies/runtimeDelay.ts +5 -0
  268. package/src/runtime/execution/policies/toolConfigReader.ts +107 -0
  269. package/src/runtime/human-loop/consoleHumanLoop.ts +113 -0
  270. package/src/runtime/human-loop/humanLoop.ts +90 -0
  271. package/src/runtime/index.ts +36 -0
  272. package/src/runtime/middleware/agentToolMiddleware.ts +329 -0
  273. package/src/runtime/middleware/commandPolicy.ts +65 -0
  274. package/src/runtime/middleware/frameworkPrompt.ts +51 -0
  275. package/src/runtime/middleware/index.ts +7 -0
  276. package/src/runtime/middleware/skillPathMap.ts +49 -0
  277. package/src/runtime/middleware/toolArgsNormalizer.ts +277 -0
  278. package/src/runtime/middleware/toolCallGuard.ts +73 -0
  279. package/src/runtime/middleware/toolFsHandlers.ts +94 -0
  280. package/src/runtime/middleware/toolRequestParser.ts +84 -0
  281. package/src/runtime/middleware/types.ts +91 -0
  282. package/src/runtime/providers/backendResolver.ts +127 -0
  283. package/src/runtime/providers/index.ts +19 -0
  284. package/src/runtime/providers/langchainRuntime.ts +67 -0
  285. package/src/runtime/providers/localShellBackend.ts +54 -0
  286. package/src/runtime/providers/openaiDeepAgent.ts +17 -0
  287. package/src/runtime/providers/openaiLocalAgent.ts +35 -0
  288. package/src/runtime/providers/openaiLocalAgentFactory.ts +185 -0
  289. package/src/runtime/providers/shared/agentProbe.ts +24 -0
  290. package/src/runtime/providers/shared/moduleFallback.ts +41 -0
  291. package/src/runtime/providers/shared/resourceCloser.ts +30 -0
  292. package/src/runtime/runtimeService.ts +205 -0
  293. package/src/runtime/stream/agentMessages.ts +72 -0
  294. package/src/runtime/stream/agentStream.ts +168 -0
  295. package/src/runtime/stream/messageSummary.ts +164 -0
  296. package/src/runtime/stream/runArtifacts.ts +72 -0
  297. package/src/state/index.ts +19 -0
  298. package/src/state/runState.ts +84 -0
  299. package/src/state/todos.ts +59 -0
  300. package/src/state/workspaceRunSession.ts +96 -0
  301. package/src/state/workspaceState.ts +199 -0
  302. package/src/types/easynet-agent-common.d.ts +62 -0
  303. package/src/types.ts +1 -0
  304. package/test/integration/runtime-live.integration.test.ts +30 -0
  305. package/test/unit/config/loader.test.ts +429 -0
  306. package/test/unit/runtime/agentContext.test.ts +23 -0
  307. package/test/unit/runtime/agentRuntime.test.ts +99 -0
  308. package/test/unit/runtime/consoleHumanLoop.test.ts +52 -0
  309. package/test/unit/runtime/events.test.ts +11 -0
  310. package/test/unit/runtime/globalContext.test.ts +34 -0
  311. package/test/unit/runtime/humanLoop.test.ts +104 -0
  312. package/test/unit/runtime/toolArgsNormalizer.test.ts +136 -0
  313. package/tsconfig.json +18 -0
@@ -0,0 +1,1396 @@
1
+ {
2
+ "name": "agent-runtime2-example",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "agent-runtime2-example",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@botbotgo/runtime": "file:..",
12
+ "@langchain/core": "^1.1.31",
13
+ "@langchain/openai": "^1.2.12",
14
+ "deepagents": "^1.8.1"
15
+ },
16
+ "devDependencies": {
17
+ "@types/node": "^22.10.1",
18
+ "tsx": "^4.19.2",
19
+ "typescript": "^5.7.2"
20
+ }
21
+ },
22
+ "..": {
23
+ "name": "@botbotgo/runtime",
24
+ "version": "0.1.0",
25
+ "hasInstallScript": true,
26
+ "license": "MIT",
27
+ "dependencies": {
28
+ "@botbotgo/common": "latest",
29
+ "@botbotgo/kit": "latest",
30
+ "@botbotgo/memory": "latest",
31
+ "@botbotgo/model": "latest"
32
+ },
33
+ "devDependencies": {
34
+ "@langchain/core": "^1.1.31",
35
+ "@semantic-release/commit-analyzer": "^13.0.0",
36
+ "@semantic-release/git": "^10.0.1",
37
+ "@semantic-release/npm": "^12.0.0",
38
+ "@semantic-release/release-notes-generator": "^14.0.0",
39
+ "@types/node": "^22.10.1",
40
+ "semantic-release": "^24.2.0",
41
+ "tsx": "^4.19.2",
42
+ "typescript": "^5.7.2"
43
+ },
44
+ "peerDependencies": {
45
+ "@langchain/core": "^1.1.31",
46
+ "deepagents": "^1.8.1"
47
+ },
48
+ "peerDependenciesMeta": {
49
+ "@langchain/core": {
50
+ "optional": true
51
+ },
52
+ "deepagents": {
53
+ "optional": true
54
+ }
55
+ }
56
+ },
57
+ "node_modules/@botbotgo/runtime": {
58
+ "resolved": "..",
59
+ "link": true
60
+ },
61
+ "node_modules/@cfworker/json-schema": {
62
+ "version": "4.1.1",
63
+ "resolved": "https://registry.npmjs.org/@cfworker/json-schema/-/json-schema-4.1.1.tgz",
64
+ "integrity": "sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==",
65
+ "license": "MIT"
66
+ },
67
+ "node_modules/@esbuild/aix-ppc64": {
68
+ "version": "0.27.3",
69
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
70
+ "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
71
+ "cpu": [
72
+ "ppc64"
73
+ ],
74
+ "dev": true,
75
+ "license": "MIT",
76
+ "optional": true,
77
+ "os": [
78
+ "aix"
79
+ ],
80
+ "engines": {
81
+ "node": ">=18"
82
+ }
83
+ },
84
+ "node_modules/@esbuild/android-arm": {
85
+ "version": "0.27.3",
86
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
87
+ "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
88
+ "cpu": [
89
+ "arm"
90
+ ],
91
+ "dev": true,
92
+ "license": "MIT",
93
+ "optional": true,
94
+ "os": [
95
+ "android"
96
+ ],
97
+ "engines": {
98
+ "node": ">=18"
99
+ }
100
+ },
101
+ "node_modules/@esbuild/android-arm64": {
102
+ "version": "0.27.3",
103
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
104
+ "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
105
+ "cpu": [
106
+ "arm64"
107
+ ],
108
+ "dev": true,
109
+ "license": "MIT",
110
+ "optional": true,
111
+ "os": [
112
+ "android"
113
+ ],
114
+ "engines": {
115
+ "node": ">=18"
116
+ }
117
+ },
118
+ "node_modules/@esbuild/android-x64": {
119
+ "version": "0.27.3",
120
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
121
+ "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
122
+ "cpu": [
123
+ "x64"
124
+ ],
125
+ "dev": true,
126
+ "license": "MIT",
127
+ "optional": true,
128
+ "os": [
129
+ "android"
130
+ ],
131
+ "engines": {
132
+ "node": ">=18"
133
+ }
134
+ },
135
+ "node_modules/@esbuild/darwin-arm64": {
136
+ "version": "0.27.3",
137
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
138
+ "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
139
+ "cpu": [
140
+ "arm64"
141
+ ],
142
+ "dev": true,
143
+ "license": "MIT",
144
+ "optional": true,
145
+ "os": [
146
+ "darwin"
147
+ ],
148
+ "engines": {
149
+ "node": ">=18"
150
+ }
151
+ },
152
+ "node_modules/@esbuild/darwin-x64": {
153
+ "version": "0.27.3",
154
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
155
+ "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
156
+ "cpu": [
157
+ "x64"
158
+ ],
159
+ "dev": true,
160
+ "license": "MIT",
161
+ "optional": true,
162
+ "os": [
163
+ "darwin"
164
+ ],
165
+ "engines": {
166
+ "node": ">=18"
167
+ }
168
+ },
169
+ "node_modules/@esbuild/freebsd-arm64": {
170
+ "version": "0.27.3",
171
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
172
+ "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
173
+ "cpu": [
174
+ "arm64"
175
+ ],
176
+ "dev": true,
177
+ "license": "MIT",
178
+ "optional": true,
179
+ "os": [
180
+ "freebsd"
181
+ ],
182
+ "engines": {
183
+ "node": ">=18"
184
+ }
185
+ },
186
+ "node_modules/@esbuild/freebsd-x64": {
187
+ "version": "0.27.3",
188
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
189
+ "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
190
+ "cpu": [
191
+ "x64"
192
+ ],
193
+ "dev": true,
194
+ "license": "MIT",
195
+ "optional": true,
196
+ "os": [
197
+ "freebsd"
198
+ ],
199
+ "engines": {
200
+ "node": ">=18"
201
+ }
202
+ },
203
+ "node_modules/@esbuild/linux-arm": {
204
+ "version": "0.27.3",
205
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
206
+ "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
207
+ "cpu": [
208
+ "arm"
209
+ ],
210
+ "dev": true,
211
+ "license": "MIT",
212
+ "optional": true,
213
+ "os": [
214
+ "linux"
215
+ ],
216
+ "engines": {
217
+ "node": ">=18"
218
+ }
219
+ },
220
+ "node_modules/@esbuild/linux-arm64": {
221
+ "version": "0.27.3",
222
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
223
+ "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
224
+ "cpu": [
225
+ "arm64"
226
+ ],
227
+ "dev": true,
228
+ "license": "MIT",
229
+ "optional": true,
230
+ "os": [
231
+ "linux"
232
+ ],
233
+ "engines": {
234
+ "node": ">=18"
235
+ }
236
+ },
237
+ "node_modules/@esbuild/linux-ia32": {
238
+ "version": "0.27.3",
239
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
240
+ "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
241
+ "cpu": [
242
+ "ia32"
243
+ ],
244
+ "dev": true,
245
+ "license": "MIT",
246
+ "optional": true,
247
+ "os": [
248
+ "linux"
249
+ ],
250
+ "engines": {
251
+ "node": ">=18"
252
+ }
253
+ },
254
+ "node_modules/@esbuild/linux-loong64": {
255
+ "version": "0.27.3",
256
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
257
+ "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
258
+ "cpu": [
259
+ "loong64"
260
+ ],
261
+ "dev": true,
262
+ "license": "MIT",
263
+ "optional": true,
264
+ "os": [
265
+ "linux"
266
+ ],
267
+ "engines": {
268
+ "node": ">=18"
269
+ }
270
+ },
271
+ "node_modules/@esbuild/linux-mips64el": {
272
+ "version": "0.27.3",
273
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
274
+ "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
275
+ "cpu": [
276
+ "mips64el"
277
+ ],
278
+ "dev": true,
279
+ "license": "MIT",
280
+ "optional": true,
281
+ "os": [
282
+ "linux"
283
+ ],
284
+ "engines": {
285
+ "node": ">=18"
286
+ }
287
+ },
288
+ "node_modules/@esbuild/linux-ppc64": {
289
+ "version": "0.27.3",
290
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
291
+ "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
292
+ "cpu": [
293
+ "ppc64"
294
+ ],
295
+ "dev": true,
296
+ "license": "MIT",
297
+ "optional": true,
298
+ "os": [
299
+ "linux"
300
+ ],
301
+ "engines": {
302
+ "node": ">=18"
303
+ }
304
+ },
305
+ "node_modules/@esbuild/linux-riscv64": {
306
+ "version": "0.27.3",
307
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
308
+ "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
309
+ "cpu": [
310
+ "riscv64"
311
+ ],
312
+ "dev": true,
313
+ "license": "MIT",
314
+ "optional": true,
315
+ "os": [
316
+ "linux"
317
+ ],
318
+ "engines": {
319
+ "node": ">=18"
320
+ }
321
+ },
322
+ "node_modules/@esbuild/linux-s390x": {
323
+ "version": "0.27.3",
324
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
325
+ "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
326
+ "cpu": [
327
+ "s390x"
328
+ ],
329
+ "dev": true,
330
+ "license": "MIT",
331
+ "optional": true,
332
+ "os": [
333
+ "linux"
334
+ ],
335
+ "engines": {
336
+ "node": ">=18"
337
+ }
338
+ },
339
+ "node_modules/@esbuild/linux-x64": {
340
+ "version": "0.27.3",
341
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
342
+ "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
343
+ "cpu": [
344
+ "x64"
345
+ ],
346
+ "dev": true,
347
+ "license": "MIT",
348
+ "optional": true,
349
+ "os": [
350
+ "linux"
351
+ ],
352
+ "engines": {
353
+ "node": ">=18"
354
+ }
355
+ },
356
+ "node_modules/@esbuild/netbsd-arm64": {
357
+ "version": "0.27.3",
358
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
359
+ "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
360
+ "cpu": [
361
+ "arm64"
362
+ ],
363
+ "dev": true,
364
+ "license": "MIT",
365
+ "optional": true,
366
+ "os": [
367
+ "netbsd"
368
+ ],
369
+ "engines": {
370
+ "node": ">=18"
371
+ }
372
+ },
373
+ "node_modules/@esbuild/netbsd-x64": {
374
+ "version": "0.27.3",
375
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
376
+ "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
377
+ "cpu": [
378
+ "x64"
379
+ ],
380
+ "dev": true,
381
+ "license": "MIT",
382
+ "optional": true,
383
+ "os": [
384
+ "netbsd"
385
+ ],
386
+ "engines": {
387
+ "node": ">=18"
388
+ }
389
+ },
390
+ "node_modules/@esbuild/openbsd-arm64": {
391
+ "version": "0.27.3",
392
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
393
+ "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
394
+ "cpu": [
395
+ "arm64"
396
+ ],
397
+ "dev": true,
398
+ "license": "MIT",
399
+ "optional": true,
400
+ "os": [
401
+ "openbsd"
402
+ ],
403
+ "engines": {
404
+ "node": ">=18"
405
+ }
406
+ },
407
+ "node_modules/@esbuild/openbsd-x64": {
408
+ "version": "0.27.3",
409
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
410
+ "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
411
+ "cpu": [
412
+ "x64"
413
+ ],
414
+ "dev": true,
415
+ "license": "MIT",
416
+ "optional": true,
417
+ "os": [
418
+ "openbsd"
419
+ ],
420
+ "engines": {
421
+ "node": ">=18"
422
+ }
423
+ },
424
+ "node_modules/@esbuild/openharmony-arm64": {
425
+ "version": "0.27.3",
426
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
427
+ "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
428
+ "cpu": [
429
+ "arm64"
430
+ ],
431
+ "dev": true,
432
+ "license": "MIT",
433
+ "optional": true,
434
+ "os": [
435
+ "openharmony"
436
+ ],
437
+ "engines": {
438
+ "node": ">=18"
439
+ }
440
+ },
441
+ "node_modules/@esbuild/sunos-x64": {
442
+ "version": "0.27.3",
443
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
444
+ "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
445
+ "cpu": [
446
+ "x64"
447
+ ],
448
+ "dev": true,
449
+ "license": "MIT",
450
+ "optional": true,
451
+ "os": [
452
+ "sunos"
453
+ ],
454
+ "engines": {
455
+ "node": ">=18"
456
+ }
457
+ },
458
+ "node_modules/@esbuild/win32-arm64": {
459
+ "version": "0.27.3",
460
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
461
+ "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
462
+ "cpu": [
463
+ "arm64"
464
+ ],
465
+ "dev": true,
466
+ "license": "MIT",
467
+ "optional": true,
468
+ "os": [
469
+ "win32"
470
+ ],
471
+ "engines": {
472
+ "node": ">=18"
473
+ }
474
+ },
475
+ "node_modules/@esbuild/win32-ia32": {
476
+ "version": "0.27.3",
477
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
478
+ "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
479
+ "cpu": [
480
+ "ia32"
481
+ ],
482
+ "dev": true,
483
+ "license": "MIT",
484
+ "optional": true,
485
+ "os": [
486
+ "win32"
487
+ ],
488
+ "engines": {
489
+ "node": ">=18"
490
+ }
491
+ },
492
+ "node_modules/@esbuild/win32-x64": {
493
+ "version": "0.27.3",
494
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
495
+ "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
496
+ "cpu": [
497
+ "x64"
498
+ ],
499
+ "dev": true,
500
+ "license": "MIT",
501
+ "optional": true,
502
+ "os": [
503
+ "win32"
504
+ ],
505
+ "engines": {
506
+ "node": ">=18"
507
+ }
508
+ },
509
+ "node_modules/@langchain/core": {
510
+ "version": "1.1.31",
511
+ "resolved": "https://registry.npmjs.org/@langchain/core/-/core-1.1.31.tgz",
512
+ "integrity": "sha512-FxsgIUONjKaRpjx59sISgmb0OMCbAetPGyhzjGa2kX0y1f8LZ5xm9VB2db7W9HYWyLvzRWcMA51Uu4OSTJmtZQ==",
513
+ "license": "MIT",
514
+ "dependencies": {
515
+ "@cfworker/json-schema": "^4.0.2",
516
+ "@standard-schema/spec": "^1.1.0",
517
+ "ansi-styles": "^5.0.0",
518
+ "camelcase": "6",
519
+ "decamelize": "1.2.0",
520
+ "js-tiktoken": "^1.0.12",
521
+ "langsmith": ">=0.5.0 <1.0.0",
522
+ "mustache": "^4.2.0",
523
+ "p-queue": "^6.6.2",
524
+ "uuid": "^11.1.0",
525
+ "zod": "^3.25.76 || ^4"
526
+ },
527
+ "engines": {
528
+ "node": ">=20"
529
+ }
530
+ },
531
+ "node_modules/@langchain/langgraph": {
532
+ "version": "1.2.0",
533
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph/-/langgraph-1.2.0.tgz",
534
+ "integrity": "sha512-wyqKIzXTAfXX3L1d8R7icM+HmRQBTbuNLWtUlpRJ/JP/ux1ei/sOSt6p8f90ARoOP2iJVlM70wOBYWaGErdBlA==",
535
+ "license": "MIT",
536
+ "dependencies": {
537
+ "@langchain/langgraph-checkpoint": "^1.0.0",
538
+ "@langchain/langgraph-sdk": "~1.6.5",
539
+ "@standard-schema/spec": "1.1.0",
540
+ "uuid": "^10.0.0"
541
+ },
542
+ "engines": {
543
+ "node": ">=18"
544
+ },
545
+ "peerDependencies": {
546
+ "@langchain/core": "^1.1.16",
547
+ "zod": "^3.25.32 || ^4.2.0",
548
+ "zod-to-json-schema": "^3.x"
549
+ },
550
+ "peerDependenciesMeta": {
551
+ "zod-to-json-schema": {
552
+ "optional": true
553
+ }
554
+ }
555
+ },
556
+ "node_modules/@langchain/langgraph-checkpoint": {
557
+ "version": "1.0.0",
558
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.0.0.tgz",
559
+ "integrity": "sha512-xrclBGvNCXDmi0Nz28t3vjpxSH6UYx6w5XAXSiiB1WEdc2xD2iY/a913I3x3a31XpInUW/GGfXXfePfaghV54A==",
560
+ "license": "MIT",
561
+ "dependencies": {
562
+ "uuid": "^10.0.0"
563
+ },
564
+ "engines": {
565
+ "node": ">=18"
566
+ },
567
+ "peerDependencies": {
568
+ "@langchain/core": "^1.0.1"
569
+ }
570
+ },
571
+ "node_modules/@langchain/langgraph-checkpoint/node_modules/uuid": {
572
+ "version": "10.0.0",
573
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
574
+ "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
575
+ "funding": [
576
+ "https://github.com/sponsors/broofa",
577
+ "https://github.com/sponsors/ctavan"
578
+ ],
579
+ "license": "MIT",
580
+ "bin": {
581
+ "uuid": "dist/bin/uuid"
582
+ }
583
+ },
584
+ "node_modules/@langchain/langgraph-sdk": {
585
+ "version": "1.6.5",
586
+ "resolved": "https://registry.npmjs.org/@langchain/langgraph-sdk/-/langgraph-sdk-1.6.5.tgz",
587
+ "integrity": "sha512-JjprmbhgCnoNJ9DUKcvrEU+C9FfKsNGyT3ooqWxAY5Cx2qofhXmDJOpTCqqbxfDHPKG0RjTs5HgVK3WW5M6Big==",
588
+ "license": "MIT",
589
+ "dependencies": {
590
+ "@types/json-schema": "^7.0.15",
591
+ "p-queue": "^9.0.1",
592
+ "p-retry": "^7.1.1",
593
+ "uuid": "^13.0.0"
594
+ },
595
+ "peerDependencies": {
596
+ "@langchain/core": "^1.1.16",
597
+ "react": "^18 || ^19",
598
+ "react-dom": "^18 || ^19"
599
+ },
600
+ "peerDependenciesMeta": {
601
+ "@langchain/core": {
602
+ "optional": true
603
+ },
604
+ "react": {
605
+ "optional": true
606
+ },
607
+ "react-dom": {
608
+ "optional": true
609
+ }
610
+ }
611
+ },
612
+ "node_modules/@langchain/langgraph-sdk/node_modules/eventemitter3": {
613
+ "version": "5.0.4",
614
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
615
+ "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
616
+ "license": "MIT"
617
+ },
618
+ "node_modules/@langchain/langgraph-sdk/node_modules/p-queue": {
619
+ "version": "9.1.0",
620
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.1.0.tgz",
621
+ "integrity": "sha512-O/ZPaXuQV29uSLbxWBGGZO1mCQXV2BLIwUr59JUU9SoH76mnYvtms7aafH/isNSNGwuEfP6W/4xD0/TJXxrizw==",
622
+ "license": "MIT",
623
+ "dependencies": {
624
+ "eventemitter3": "^5.0.1",
625
+ "p-timeout": "^7.0.0"
626
+ },
627
+ "engines": {
628
+ "node": ">=20"
629
+ },
630
+ "funding": {
631
+ "url": "https://github.com/sponsors/sindresorhus"
632
+ }
633
+ },
634
+ "node_modules/@langchain/langgraph-sdk/node_modules/p-timeout": {
635
+ "version": "7.0.1",
636
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz",
637
+ "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==",
638
+ "license": "MIT",
639
+ "engines": {
640
+ "node": ">=20"
641
+ },
642
+ "funding": {
643
+ "url": "https://github.com/sponsors/sindresorhus"
644
+ }
645
+ },
646
+ "node_modules/@langchain/langgraph-sdk/node_modules/uuid": {
647
+ "version": "13.0.0",
648
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz",
649
+ "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==",
650
+ "funding": [
651
+ "https://github.com/sponsors/broofa",
652
+ "https://github.com/sponsors/ctavan"
653
+ ],
654
+ "license": "MIT",
655
+ "bin": {
656
+ "uuid": "dist-node/bin/uuid"
657
+ }
658
+ },
659
+ "node_modules/@langchain/langgraph/node_modules/uuid": {
660
+ "version": "10.0.0",
661
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
662
+ "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
663
+ "funding": [
664
+ "https://github.com/sponsors/broofa",
665
+ "https://github.com/sponsors/ctavan"
666
+ ],
667
+ "license": "MIT",
668
+ "bin": {
669
+ "uuid": "dist/bin/uuid"
670
+ }
671
+ },
672
+ "node_modules/@langchain/openai": {
673
+ "version": "1.2.12",
674
+ "resolved": "https://registry.npmjs.org/@langchain/openai/-/openai-1.2.12.tgz",
675
+ "integrity": "sha512-Im6PPNujrfkZk4vpc9JAjbeERg+RbNtWRe3KSFOP7aNGa/yZ+XD69lxXwbsZGaZkbiUN/hwe9RYeisUfThb5wg==",
676
+ "license": "MIT",
677
+ "dependencies": {
678
+ "js-tiktoken": "^1.0.12",
679
+ "openai": "^6.24.0",
680
+ "zod": "^3.25.76 || ^4"
681
+ },
682
+ "engines": {
683
+ "node": ">=20"
684
+ },
685
+ "peerDependencies": {
686
+ "@langchain/core": "^1.1.30"
687
+ }
688
+ },
689
+ "node_modules/@nodelib/fs.scandir": {
690
+ "version": "2.1.5",
691
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
692
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
693
+ "license": "MIT",
694
+ "dependencies": {
695
+ "@nodelib/fs.stat": "2.0.5",
696
+ "run-parallel": "^1.1.9"
697
+ },
698
+ "engines": {
699
+ "node": ">= 8"
700
+ }
701
+ },
702
+ "node_modules/@nodelib/fs.stat": {
703
+ "version": "2.0.5",
704
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
705
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
706
+ "license": "MIT",
707
+ "engines": {
708
+ "node": ">= 8"
709
+ }
710
+ },
711
+ "node_modules/@nodelib/fs.walk": {
712
+ "version": "1.2.8",
713
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
714
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
715
+ "license": "MIT",
716
+ "dependencies": {
717
+ "@nodelib/fs.scandir": "2.1.5",
718
+ "fastq": "^1.6.0"
719
+ },
720
+ "engines": {
721
+ "node": ">= 8"
722
+ }
723
+ },
724
+ "node_modules/@standard-schema/spec": {
725
+ "version": "1.1.0",
726
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
727
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
728
+ "license": "MIT"
729
+ },
730
+ "node_modules/@types/json-schema": {
731
+ "version": "7.0.15",
732
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
733
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
734
+ "license": "MIT"
735
+ },
736
+ "node_modules/@types/node": {
737
+ "version": "22.19.13",
738
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.13.tgz",
739
+ "integrity": "sha512-akNQMv0wW5uyRpD2v2IEyRSZiR+BeGuoB6L310EgGObO44HSMNT8z1xzio28V8qOrgYaopIDNA18YgdXd+qTiw==",
740
+ "dev": true,
741
+ "license": "MIT",
742
+ "dependencies": {
743
+ "undici-types": "~6.21.0"
744
+ }
745
+ },
746
+ "node_modules/@types/uuid": {
747
+ "version": "10.0.0",
748
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz",
749
+ "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==",
750
+ "license": "MIT"
751
+ },
752
+ "node_modules/ansi-styles": {
753
+ "version": "5.2.0",
754
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
755
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
756
+ "license": "MIT",
757
+ "engines": {
758
+ "node": ">=10"
759
+ },
760
+ "funding": {
761
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
762
+ }
763
+ },
764
+ "node_modules/base64-js": {
765
+ "version": "1.5.1",
766
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
767
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
768
+ "funding": [
769
+ {
770
+ "type": "github",
771
+ "url": "https://github.com/sponsors/feross"
772
+ },
773
+ {
774
+ "type": "patreon",
775
+ "url": "https://www.patreon.com/feross"
776
+ },
777
+ {
778
+ "type": "consulting",
779
+ "url": "https://feross.org/support"
780
+ }
781
+ ],
782
+ "license": "MIT"
783
+ },
784
+ "node_modules/braces": {
785
+ "version": "3.0.3",
786
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
787
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
788
+ "license": "MIT",
789
+ "dependencies": {
790
+ "fill-range": "^7.1.1"
791
+ },
792
+ "engines": {
793
+ "node": ">=8"
794
+ }
795
+ },
796
+ "node_modules/camelcase": {
797
+ "version": "6.3.0",
798
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
799
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
800
+ "license": "MIT",
801
+ "engines": {
802
+ "node": ">=10"
803
+ },
804
+ "funding": {
805
+ "url": "https://github.com/sponsors/sindresorhus"
806
+ }
807
+ },
808
+ "node_modules/chalk": {
809
+ "version": "5.6.2",
810
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
811
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
812
+ "license": "MIT",
813
+ "engines": {
814
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
815
+ },
816
+ "funding": {
817
+ "url": "https://github.com/chalk/chalk?sponsor=1"
818
+ }
819
+ },
820
+ "node_modules/console-table-printer": {
821
+ "version": "2.15.0",
822
+ "resolved": "https://registry.npmjs.org/console-table-printer/-/console-table-printer-2.15.0.tgz",
823
+ "integrity": "sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==",
824
+ "license": "MIT",
825
+ "dependencies": {
826
+ "simple-wcswidth": "^1.1.2"
827
+ }
828
+ },
829
+ "node_modules/decamelize": {
830
+ "version": "1.2.0",
831
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
832
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
833
+ "license": "MIT",
834
+ "engines": {
835
+ "node": ">=0.10.0"
836
+ }
837
+ },
838
+ "node_modules/deepagents": {
839
+ "version": "1.8.1",
840
+ "resolved": "https://registry.npmjs.org/deepagents/-/deepagents-1.8.1.tgz",
841
+ "integrity": "sha512-C4rc/cWQ7oasPfrnafAJc0eVlIny9b8djKIDALIcdHi5nEHrBTSm3poV5++1gJDDWPWJa/UbrHPSSm90HSAh+Q==",
842
+ "license": "MIT",
843
+ "dependencies": {
844
+ "@langchain/core": "^1.1.25",
845
+ "@langchain/langgraph": "^1.1.4",
846
+ "fast-glob": "^3.3.3",
847
+ "langchain": "1.2.26",
848
+ "micromatch": "^4.0.8",
849
+ "yaml": "^2.8.2",
850
+ "zod": "^4.3.6"
851
+ }
852
+ },
853
+ "node_modules/esbuild": {
854
+ "version": "0.27.3",
855
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
856
+ "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
857
+ "dev": true,
858
+ "hasInstallScript": true,
859
+ "license": "MIT",
860
+ "bin": {
861
+ "esbuild": "bin/esbuild"
862
+ },
863
+ "engines": {
864
+ "node": ">=18"
865
+ },
866
+ "optionalDependencies": {
867
+ "@esbuild/aix-ppc64": "0.27.3",
868
+ "@esbuild/android-arm": "0.27.3",
869
+ "@esbuild/android-arm64": "0.27.3",
870
+ "@esbuild/android-x64": "0.27.3",
871
+ "@esbuild/darwin-arm64": "0.27.3",
872
+ "@esbuild/darwin-x64": "0.27.3",
873
+ "@esbuild/freebsd-arm64": "0.27.3",
874
+ "@esbuild/freebsd-x64": "0.27.3",
875
+ "@esbuild/linux-arm": "0.27.3",
876
+ "@esbuild/linux-arm64": "0.27.3",
877
+ "@esbuild/linux-ia32": "0.27.3",
878
+ "@esbuild/linux-loong64": "0.27.3",
879
+ "@esbuild/linux-mips64el": "0.27.3",
880
+ "@esbuild/linux-ppc64": "0.27.3",
881
+ "@esbuild/linux-riscv64": "0.27.3",
882
+ "@esbuild/linux-s390x": "0.27.3",
883
+ "@esbuild/linux-x64": "0.27.3",
884
+ "@esbuild/netbsd-arm64": "0.27.3",
885
+ "@esbuild/netbsd-x64": "0.27.3",
886
+ "@esbuild/openbsd-arm64": "0.27.3",
887
+ "@esbuild/openbsd-x64": "0.27.3",
888
+ "@esbuild/openharmony-arm64": "0.27.3",
889
+ "@esbuild/sunos-x64": "0.27.3",
890
+ "@esbuild/win32-arm64": "0.27.3",
891
+ "@esbuild/win32-ia32": "0.27.3",
892
+ "@esbuild/win32-x64": "0.27.3"
893
+ }
894
+ },
895
+ "node_modules/eventemitter3": {
896
+ "version": "4.0.7",
897
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
898
+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
899
+ "license": "MIT"
900
+ },
901
+ "node_modules/fast-glob": {
902
+ "version": "3.3.3",
903
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
904
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
905
+ "license": "MIT",
906
+ "dependencies": {
907
+ "@nodelib/fs.stat": "^2.0.2",
908
+ "@nodelib/fs.walk": "^1.2.3",
909
+ "glob-parent": "^5.1.2",
910
+ "merge2": "^1.3.0",
911
+ "micromatch": "^4.0.8"
912
+ },
913
+ "engines": {
914
+ "node": ">=8.6.0"
915
+ }
916
+ },
917
+ "node_modules/fastq": {
918
+ "version": "1.20.1",
919
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
920
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
921
+ "license": "ISC",
922
+ "dependencies": {
923
+ "reusify": "^1.0.4"
924
+ }
925
+ },
926
+ "node_modules/fill-range": {
927
+ "version": "7.1.1",
928
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
929
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
930
+ "license": "MIT",
931
+ "dependencies": {
932
+ "to-regex-range": "^5.0.1"
933
+ },
934
+ "engines": {
935
+ "node": ">=8"
936
+ }
937
+ },
938
+ "node_modules/fsevents": {
939
+ "version": "2.3.3",
940
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
941
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
942
+ "dev": true,
943
+ "hasInstallScript": true,
944
+ "license": "MIT",
945
+ "optional": true,
946
+ "os": [
947
+ "darwin"
948
+ ],
949
+ "engines": {
950
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
951
+ }
952
+ },
953
+ "node_modules/get-tsconfig": {
954
+ "version": "4.13.6",
955
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
956
+ "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
957
+ "dev": true,
958
+ "license": "MIT",
959
+ "dependencies": {
960
+ "resolve-pkg-maps": "^1.0.0"
961
+ },
962
+ "funding": {
963
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
964
+ }
965
+ },
966
+ "node_modules/glob-parent": {
967
+ "version": "5.1.2",
968
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
969
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
970
+ "license": "ISC",
971
+ "dependencies": {
972
+ "is-glob": "^4.0.1"
973
+ },
974
+ "engines": {
975
+ "node": ">= 6"
976
+ }
977
+ },
978
+ "node_modules/is-extglob": {
979
+ "version": "2.1.1",
980
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
981
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
982
+ "license": "MIT",
983
+ "engines": {
984
+ "node": ">=0.10.0"
985
+ }
986
+ },
987
+ "node_modules/is-glob": {
988
+ "version": "4.0.3",
989
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
990
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
991
+ "license": "MIT",
992
+ "dependencies": {
993
+ "is-extglob": "^2.1.1"
994
+ },
995
+ "engines": {
996
+ "node": ">=0.10.0"
997
+ }
998
+ },
999
+ "node_modules/is-network-error": {
1000
+ "version": "1.3.1",
1001
+ "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.1.tgz",
1002
+ "integrity": "sha512-6QCxa49rQbmUWLfk0nuGqzql9U8uaV2H6279bRErPBHe/109hCzsLUBUHfbEtvLIHBd6hyXbgedBSHevm43Edw==",
1003
+ "license": "MIT",
1004
+ "engines": {
1005
+ "node": ">=16"
1006
+ },
1007
+ "funding": {
1008
+ "url": "https://github.com/sponsors/sindresorhus"
1009
+ }
1010
+ },
1011
+ "node_modules/is-number": {
1012
+ "version": "7.0.0",
1013
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1014
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1015
+ "license": "MIT",
1016
+ "engines": {
1017
+ "node": ">=0.12.0"
1018
+ }
1019
+ },
1020
+ "node_modules/js-tiktoken": {
1021
+ "version": "1.0.21",
1022
+ "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.21.tgz",
1023
+ "integrity": "sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==",
1024
+ "license": "MIT",
1025
+ "dependencies": {
1026
+ "base64-js": "^1.5.1"
1027
+ }
1028
+ },
1029
+ "node_modules/langchain": {
1030
+ "version": "1.2.26",
1031
+ "resolved": "https://registry.npmjs.org/langchain/-/langchain-1.2.26.tgz",
1032
+ "integrity": "sha512-ME7akrKzX5OBoQOgVRd4S8WZ8SlTdaDD5SYDjk7OV2kN/g1aVH5suhhGd2tHw3I9/jjBZVpOmfA19qGAXeXM5Q==",
1033
+ "license": "MIT",
1034
+ "dependencies": {
1035
+ "@langchain/langgraph": "^1.1.2",
1036
+ "@langchain/langgraph-checkpoint": "^1.0.0",
1037
+ "langsmith": ">=0.5.0 <1.0.0",
1038
+ "uuid": "^10.0.0",
1039
+ "zod": "^3.25.76 || ^4"
1040
+ },
1041
+ "engines": {
1042
+ "node": ">=20"
1043
+ },
1044
+ "peerDependencies": {
1045
+ "@langchain/core": "^1.1.27"
1046
+ }
1047
+ },
1048
+ "node_modules/langchain/node_modules/uuid": {
1049
+ "version": "10.0.0",
1050
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
1051
+ "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
1052
+ "funding": [
1053
+ "https://github.com/sponsors/broofa",
1054
+ "https://github.com/sponsors/ctavan"
1055
+ ],
1056
+ "license": "MIT",
1057
+ "bin": {
1058
+ "uuid": "dist/bin/uuid"
1059
+ }
1060
+ },
1061
+ "node_modules/langsmith": {
1062
+ "version": "0.5.7",
1063
+ "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.5.7.tgz",
1064
+ "integrity": "sha512-FjYf2oBGMoSXnaT4SRaFguIiGJaonZ5VKWKJDPl9awLZjz2RkN29AcQWceecSINVzXzTvtRWPOjAWT+XggqNNg==",
1065
+ "license": "MIT",
1066
+ "dependencies": {
1067
+ "@types/uuid": "^10.0.0",
1068
+ "chalk": "^5.6.2",
1069
+ "console-table-printer": "^2.12.1",
1070
+ "p-queue": "^6.6.2",
1071
+ "semver": "^7.6.3",
1072
+ "uuid": "^10.0.0"
1073
+ },
1074
+ "peerDependencies": {
1075
+ "@opentelemetry/api": "*",
1076
+ "@opentelemetry/exporter-trace-otlp-proto": "*",
1077
+ "@opentelemetry/sdk-trace-base": "*",
1078
+ "openai": "*"
1079
+ },
1080
+ "peerDependenciesMeta": {
1081
+ "@opentelemetry/api": {
1082
+ "optional": true
1083
+ },
1084
+ "@opentelemetry/exporter-trace-otlp-proto": {
1085
+ "optional": true
1086
+ },
1087
+ "@opentelemetry/sdk-trace-base": {
1088
+ "optional": true
1089
+ },
1090
+ "openai": {
1091
+ "optional": true
1092
+ }
1093
+ }
1094
+ },
1095
+ "node_modules/langsmith/node_modules/uuid": {
1096
+ "version": "10.0.0",
1097
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz",
1098
+ "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==",
1099
+ "funding": [
1100
+ "https://github.com/sponsors/broofa",
1101
+ "https://github.com/sponsors/ctavan"
1102
+ ],
1103
+ "license": "MIT",
1104
+ "bin": {
1105
+ "uuid": "dist/bin/uuid"
1106
+ }
1107
+ },
1108
+ "node_modules/merge2": {
1109
+ "version": "1.4.1",
1110
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
1111
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
1112
+ "license": "MIT",
1113
+ "engines": {
1114
+ "node": ">= 8"
1115
+ }
1116
+ },
1117
+ "node_modules/micromatch": {
1118
+ "version": "4.0.8",
1119
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
1120
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
1121
+ "license": "MIT",
1122
+ "dependencies": {
1123
+ "braces": "^3.0.3",
1124
+ "picomatch": "^2.3.1"
1125
+ },
1126
+ "engines": {
1127
+ "node": ">=8.6"
1128
+ }
1129
+ },
1130
+ "node_modules/mustache": {
1131
+ "version": "4.2.0",
1132
+ "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz",
1133
+ "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==",
1134
+ "license": "MIT",
1135
+ "bin": {
1136
+ "mustache": "bin/mustache"
1137
+ }
1138
+ },
1139
+ "node_modules/openai": {
1140
+ "version": "6.25.0",
1141
+ "resolved": "https://registry.npmjs.org/openai/-/openai-6.25.0.tgz",
1142
+ "integrity": "sha512-mEh6VZ2ds2AGGokWARo18aPISI1OhlgdEIC1ewhkZr8pSIT31dec0ecr9Nhxx0JlybyOgoAT1sWeKtwPZzJyww==",
1143
+ "license": "Apache-2.0",
1144
+ "bin": {
1145
+ "openai": "bin/cli"
1146
+ },
1147
+ "peerDependencies": {
1148
+ "ws": "^8.18.0",
1149
+ "zod": "^3.25 || ^4.0"
1150
+ },
1151
+ "peerDependenciesMeta": {
1152
+ "ws": {
1153
+ "optional": true
1154
+ },
1155
+ "zod": {
1156
+ "optional": true
1157
+ }
1158
+ }
1159
+ },
1160
+ "node_modules/p-finally": {
1161
+ "version": "1.0.0",
1162
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
1163
+ "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==",
1164
+ "license": "MIT",
1165
+ "engines": {
1166
+ "node": ">=4"
1167
+ }
1168
+ },
1169
+ "node_modules/p-queue": {
1170
+ "version": "6.6.2",
1171
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
1172
+ "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
1173
+ "license": "MIT",
1174
+ "dependencies": {
1175
+ "eventemitter3": "^4.0.4",
1176
+ "p-timeout": "^3.2.0"
1177
+ },
1178
+ "engines": {
1179
+ "node": ">=8"
1180
+ },
1181
+ "funding": {
1182
+ "url": "https://github.com/sponsors/sindresorhus"
1183
+ }
1184
+ },
1185
+ "node_modules/p-retry": {
1186
+ "version": "7.1.1",
1187
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-7.1.1.tgz",
1188
+ "integrity": "sha512-J5ApzjyRkkf601HpEeykoiCvzHQjWxPAHhyjFcEUP2SWq0+35NKh8TLhpLw+Dkq5TZBFvUM6UigdE9hIVYTl5w==",
1189
+ "license": "MIT",
1190
+ "dependencies": {
1191
+ "is-network-error": "^1.1.0"
1192
+ },
1193
+ "engines": {
1194
+ "node": ">=20"
1195
+ },
1196
+ "funding": {
1197
+ "url": "https://github.com/sponsors/sindresorhus"
1198
+ }
1199
+ },
1200
+ "node_modules/p-timeout": {
1201
+ "version": "3.2.0",
1202
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
1203
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
1204
+ "license": "MIT",
1205
+ "dependencies": {
1206
+ "p-finally": "^1.0.0"
1207
+ },
1208
+ "engines": {
1209
+ "node": ">=8"
1210
+ }
1211
+ },
1212
+ "node_modules/picomatch": {
1213
+ "version": "2.3.1",
1214
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1215
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1216
+ "license": "MIT",
1217
+ "engines": {
1218
+ "node": ">=8.6"
1219
+ },
1220
+ "funding": {
1221
+ "url": "https://github.com/sponsors/jonschlinkert"
1222
+ }
1223
+ },
1224
+ "node_modules/queue-microtask": {
1225
+ "version": "1.2.3",
1226
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
1227
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
1228
+ "funding": [
1229
+ {
1230
+ "type": "github",
1231
+ "url": "https://github.com/sponsors/feross"
1232
+ },
1233
+ {
1234
+ "type": "patreon",
1235
+ "url": "https://www.patreon.com/feross"
1236
+ },
1237
+ {
1238
+ "type": "consulting",
1239
+ "url": "https://feross.org/support"
1240
+ }
1241
+ ],
1242
+ "license": "MIT"
1243
+ },
1244
+ "node_modules/resolve-pkg-maps": {
1245
+ "version": "1.0.0",
1246
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
1247
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
1248
+ "dev": true,
1249
+ "license": "MIT",
1250
+ "funding": {
1251
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
1252
+ }
1253
+ },
1254
+ "node_modules/reusify": {
1255
+ "version": "1.1.0",
1256
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
1257
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
1258
+ "license": "MIT",
1259
+ "engines": {
1260
+ "iojs": ">=1.0.0",
1261
+ "node": ">=0.10.0"
1262
+ }
1263
+ },
1264
+ "node_modules/run-parallel": {
1265
+ "version": "1.2.0",
1266
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
1267
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
1268
+ "funding": [
1269
+ {
1270
+ "type": "github",
1271
+ "url": "https://github.com/sponsors/feross"
1272
+ },
1273
+ {
1274
+ "type": "patreon",
1275
+ "url": "https://www.patreon.com/feross"
1276
+ },
1277
+ {
1278
+ "type": "consulting",
1279
+ "url": "https://feross.org/support"
1280
+ }
1281
+ ],
1282
+ "license": "MIT",
1283
+ "dependencies": {
1284
+ "queue-microtask": "^1.2.2"
1285
+ }
1286
+ },
1287
+ "node_modules/semver": {
1288
+ "version": "7.7.4",
1289
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
1290
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
1291
+ "license": "ISC",
1292
+ "bin": {
1293
+ "semver": "bin/semver.js"
1294
+ },
1295
+ "engines": {
1296
+ "node": ">=10"
1297
+ }
1298
+ },
1299
+ "node_modules/simple-wcswidth": {
1300
+ "version": "1.1.2",
1301
+ "resolved": "https://registry.npmjs.org/simple-wcswidth/-/simple-wcswidth-1.1.2.tgz",
1302
+ "integrity": "sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==",
1303
+ "license": "MIT"
1304
+ },
1305
+ "node_modules/to-regex-range": {
1306
+ "version": "5.0.1",
1307
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1308
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1309
+ "license": "MIT",
1310
+ "dependencies": {
1311
+ "is-number": "^7.0.0"
1312
+ },
1313
+ "engines": {
1314
+ "node": ">=8.0"
1315
+ }
1316
+ },
1317
+ "node_modules/tsx": {
1318
+ "version": "4.21.0",
1319
+ "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz",
1320
+ "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
1321
+ "dev": true,
1322
+ "license": "MIT",
1323
+ "dependencies": {
1324
+ "esbuild": "~0.27.0",
1325
+ "get-tsconfig": "^4.7.5"
1326
+ },
1327
+ "bin": {
1328
+ "tsx": "dist/cli.mjs"
1329
+ },
1330
+ "engines": {
1331
+ "node": ">=18.0.0"
1332
+ },
1333
+ "optionalDependencies": {
1334
+ "fsevents": "~2.3.3"
1335
+ }
1336
+ },
1337
+ "node_modules/typescript": {
1338
+ "version": "5.9.3",
1339
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1340
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1341
+ "dev": true,
1342
+ "license": "Apache-2.0",
1343
+ "bin": {
1344
+ "tsc": "bin/tsc",
1345
+ "tsserver": "bin/tsserver"
1346
+ },
1347
+ "engines": {
1348
+ "node": ">=14.17"
1349
+ }
1350
+ },
1351
+ "node_modules/undici-types": {
1352
+ "version": "6.21.0",
1353
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
1354
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1355
+ "dev": true,
1356
+ "license": "MIT"
1357
+ },
1358
+ "node_modules/uuid": {
1359
+ "version": "11.1.0",
1360
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
1361
+ "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
1362
+ "funding": [
1363
+ "https://github.com/sponsors/broofa",
1364
+ "https://github.com/sponsors/ctavan"
1365
+ ],
1366
+ "license": "MIT",
1367
+ "bin": {
1368
+ "uuid": "dist/esm/bin/uuid"
1369
+ }
1370
+ },
1371
+ "node_modules/yaml": {
1372
+ "version": "2.8.2",
1373
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
1374
+ "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
1375
+ "license": "ISC",
1376
+ "bin": {
1377
+ "yaml": "bin.mjs"
1378
+ },
1379
+ "engines": {
1380
+ "node": ">= 14.6"
1381
+ },
1382
+ "funding": {
1383
+ "url": "https://github.com/sponsors/eemeli"
1384
+ }
1385
+ },
1386
+ "node_modules/zod": {
1387
+ "version": "4.3.6",
1388
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
1389
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
1390
+ "license": "MIT",
1391
+ "funding": {
1392
+ "url": "https://github.com/sponsors/colinhacks"
1393
+ }
1394
+ }
1395
+ }
1396
+ }