@easynet/agent-runtime 1.0.3 → 1.0.4
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/.github/workflows/ci.yml +9 -24
- package/.github/workflows/release.yml +14 -35
- package/agent-runtime/.github/workflows/ci.yml +69 -0
- package/agent-runtime/.github/workflows/release.yml +118 -0
- package/agent-runtime/.releaserc.cjs +26 -0
- package/agent-runtime/config/agent.deep.yaml +25 -0
- package/agent-runtime/config/agent.react.yaml +24 -0
- package/agent-runtime/example/basic-usage.ts +49 -0
- package/agent-runtime/package-lock.json +7740 -0
- package/agent-runtime/package.json +49 -0
- package/agent-runtime/pnpm-lock.yaml +3712 -0
- package/agent-runtime/scripts/resolve-deps.js +54 -0
- package/agent-runtime/src/agents/deep-agent.ts +165 -0
- package/agent-runtime/src/agents/react-agent.helpers.ts +227 -0
- package/agent-runtime/src/agents/react-agent.ts +584 -0
- package/{src → agent-runtime/src/agents}/sub-agent.ts +2 -2
- package/agent-runtime/src/cli/args.ts +15 -0
- package/agent-runtime/src/cli/event-listener.ts +162 -0
- package/agent-runtime/src/cli/interactive.ts +144 -0
- package/agent-runtime/src/cli/runtime.ts +31 -0
- package/agent-runtime/src/cli/spinner.ts +23 -0
- package/agent-runtime/src/cli/terminal-render.ts +322 -0
- package/agent-runtime/src/cli/types.ts +33 -0
- package/agent-runtime/src/cli.ts +134 -0
- package/agent-runtime/src/config/helpers.ts +179 -0
- package/agent-runtime/src/config/index.ts +245 -0
- package/agent-runtime/src/config/types.ts +62 -0
- package/agent-runtime/src/core/context.ts +266 -0
- package/agent-runtime/src/index.ts +55 -0
- package/agent-runtime/tsconfig.json +18 -0
- package/apps/imessagebot/README.md +38 -0
- package/apps/imessagebot/config/.agent/cache/easynet/agent-tool-buildin/0.0.45/README.md +33 -0
- package/apps/imessagebot/config/.agent/cache/easynet/agent-tool-buildin/0.0.45/package-lock.json +15257 -0
- package/apps/imessagebot/config/.agent/cache/easynet/agent-tool-buildin/0.0.45/package.json +55 -0
- package/apps/imessagebot/config/agents/deep/agent.yaml +31 -0
- package/apps/imessagebot/config/agents/react/agent.yaml +58 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.43/README.md +33 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.43/package-lock.json +15457 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.43/package.json +55 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.46/README.md +33 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.46/package-lock.json +15257 -0
- package/apps/imessagebot/config/agents/shared/.agent/cache/easynet/agent-tool-buildin/0.0.46/package.json +62 -0
- package/apps/imessagebot/config/agents/shared/memory.yaml +31 -0
- package/apps/imessagebot/config/agents/shared/model.yaml +23 -0
- package/apps/imessagebot/config/agents/shared/tool.yaml +13 -0
- package/apps/imessagebot/config/app.yaml +14 -0
- package/apps/imessagebot/package-lock.json +53695 -0
- package/apps/imessagebot/package.json +41 -0
- package/apps/imessagebot/pnpm-lock.yaml +1589 -0
- package/apps/imessagebot/scripts/resolve-deps.js +41 -0
- package/apps/imessagebot/scripts/test-llm.mjs +27 -0
- package/apps/imessagebot/scripts/validate-tools-config.mjs +174 -0
- package/apps/imessagebot/src/config.ts +76 -0
- package/apps/imessagebot/src/context.ts +35 -0
- package/apps/imessagebot/src/index.ts +17 -0
- package/apps/imessagebot/tsconfig.json +18 -0
- package/apps/itermbot/.github/workflows/ci.yml +61 -0
- package/apps/itermbot/.github/workflows/release.yml +80 -0
- package/apps/itermbot/.releaserc.cjs +26 -0
- package/apps/itermbot/README.md +82 -0
- package/apps/itermbot/config/app.yaml +29 -0
- package/apps/itermbot/config/tsconfig.json +18 -0
- package/apps/itermbot/macos_disk_usage_agent_plan.md +244 -0
- package/apps/itermbot/package-lock.json +53697 -0
- package/apps/itermbot/package.json +57 -0
- package/apps/itermbot/pnpm-lock.yaml +3966 -0
- package/apps/itermbot/scripts/patch-buildin-cache.sh +25 -0
- package/apps/itermbot/scripts/resolve-deps.js +41 -0
- package/apps/itermbot/scripts/test-llm.mjs +32 -0
- package/apps/itermbot/skills/command-explain-and-guard/SKILL.md +39 -0
- package/apps/itermbot/skills/command-explain-and-guard/handler.js +86 -0
- package/apps/itermbot/skills/disk-usage-investigate/SKILL.md +44 -0
- package/apps/itermbot/skills/disk-usage-investigate/handler.js +12 -0
- package/apps/itermbot/skills/gpu-ssh-monitor/SKILL.md +64 -0
- package/apps/itermbot/skills/repo-triage/SKILL.md +40 -0
- package/apps/itermbot/skills/repo-triage/handler.js +56 -0
- package/apps/itermbot/skills/test-failure-diagnose/SKILL.md +43 -0
- package/apps/itermbot/skills/test-failure-diagnose/handler.js +107 -0
- package/apps/itermbot/src/config.ts +95 -0
- package/apps/itermbot/src/context.ts +35 -0
- package/apps/itermbot/src/index.ts +223 -0
- package/apps/itermbot/src/iterm/session-hint.ts +40 -0
- package/apps/itermbot/src/iterm/target-routing.ts +419 -0
- package/apps/itermbot/src/startup/colors.ts +317 -0
- package/apps/itermbot/src/startup/diagnostics.ts +97 -0
- package/apps/itermbot/src/startup/ui.ts +141 -0
- package/config/agent.deep.yaml +25 -0
- package/config/agent.react.yaml +24 -0
- package/dist/agents/deep-agent.d.ts +37 -0
- package/dist/agents/deep-agent.d.ts.map +1 -0
- package/dist/agents/deep-agent.js +115 -0
- package/dist/agents/deep-agent.js.map +1 -0
- package/dist/agents/react-agent.d.ts +40 -0
- package/dist/agents/react-agent.d.ts.map +1 -0
- package/dist/agents/react-agent.helpers.d.ts +40 -0
- package/dist/agents/react-agent.helpers.d.ts.map +1 -0
- package/dist/agents/react-agent.helpers.js +196 -0
- package/dist/agents/react-agent.helpers.js.map +1 -0
- package/dist/agents/react-agent.js +400 -0
- package/dist/agents/react-agent.js.map +1 -0
- package/dist/agents/sub-agent.d.ts +34 -0
- package/dist/agents/sub-agent.d.ts.map +1 -0
- package/dist/agents/sub-agent.js +53 -0
- package/dist/agents/sub-agent.js.map +1 -0
- package/dist/cli/args.d.ts +8 -0
- package/dist/cli/args.d.ts.map +1 -0
- package/dist/cli/args.js +9 -0
- package/dist/cli/args.js.map +1 -0
- package/dist/cli/event-listener.d.ts +3 -0
- package/dist/cli/event-listener.d.ts.map +1 -0
- package/dist/cli/event-listener.js +131 -0
- package/dist/cli/event-listener.js.map +1 -0
- package/dist/cli/interactive.d.ts +4 -0
- package/dist/cli/interactive.d.ts.map +1 -0
- package/dist/cli/interactive.js +118 -0
- package/dist/cli/interactive.js.map +1 -0
- package/dist/cli/runtime.d.ts +8 -0
- package/dist/cli/runtime.d.ts.map +1 -0
- package/dist/cli/runtime.js +27 -0
- package/dist/cli/runtime.js.map +1 -0
- package/dist/cli/spinner.d.ts +2 -0
- package/dist/cli/spinner.d.ts.map +1 -0
- package/dist/cli/spinner.js +22 -0
- package/dist/cli/spinner.js.map +1 -0
- package/dist/cli/terminal-render.d.ts +7 -0
- package/dist/cli/terminal-render.d.ts.map +1 -0
- package/dist/cli/terminal-render.js +282 -0
- package/dist/cli/terminal-render.js.map +1 -0
- package/dist/cli/types.d.ts +29 -0
- package/dist/cli/types.d.ts.map +1 -0
- package/dist/cli/types.js +3 -0
- package/dist/cli/types.js.map +1 -0
- package/dist/cli.d.ts +4 -41
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +84 -588
- package/dist/cli.js.map +1 -1
- package/dist/config/helpers.d.ts +6 -0
- package/dist/config/helpers.d.ts.map +1 -0
- package/dist/config/helpers.js +164 -0
- package/dist/config/helpers.js.map +1 -0
- package/dist/config/index.d.ts +15 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +160 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/types.d.ts +57 -0
- package/dist/config/types.d.ts.map +1 -0
- package/dist/config/types.js +2 -0
- package/dist/config/types.js.map +1 -0
- package/dist/context.d.ts +8 -69
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +44 -24
- package/dist/context.js.map +1 -1
- package/dist/core/context.d.ts +66 -0
- package/dist/core/context.d.ts.map +1 -0
- package/dist/core/context.js +149 -0
- package/dist/core/context.js.map +1 -0
- package/dist/deep-agent.d.ts +5 -2
- package/dist/deep-agent.d.ts.map +1 -1
- package/dist/deep-agent.js +44 -11
- package/dist/deep-agent.js.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/middleware/malformed-tool-call-middleware.d.ts +8 -0
- package/dist/middleware/malformed-tool-call-middleware.d.ts.map +1 -0
- package/dist/middleware/malformed-tool-call-middleware.js +191 -0
- package/dist/middleware/malformed-tool-call-middleware.js.map +1 -0
- package/dist/react-agent.d.ts +2 -2
- package/dist/react-agent.d.ts.map +1 -1
- package/dist/react-agent.js +28 -9
- package/dist/react-agent.js.map +1 -1
- package/package.json +1 -1
- package/scripts/resolve-deps.js +54 -0
- package/src/agents/deep-agent.ts +165 -0
- package/src/agents/react-agent.helpers.ts +227 -0
- package/src/agents/react-agent.ts +584 -0
- package/src/agents/sub-agent.ts +82 -0
- package/src/cli/args.ts +15 -0
- package/src/cli/event-listener.ts +162 -0
- package/src/cli/interactive.ts +144 -0
- package/src/cli/runtime.ts +31 -0
- package/src/cli/spinner.ts +23 -0
- package/src/cli/terminal-render.ts +322 -0
- package/src/cli/types.ts +33 -0
- package/src/cli.ts +91 -702
- package/src/config/helpers.ts +179 -0
- package/src/config/index.ts +245 -0
- package/src/config/types.ts +62 -0
- package/src/core/context.ts +266 -0
- package/src/index.ts +13 -11
- package/src/middleware/malformed-tool-call-middleware.ts +239 -0
- package/src/types/markdown-it-terminal.d.ts +4 -0
- package/src/types/marked-terminal.d.ts +16 -0
- package/dist/config.d.ts +0 -86
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -84
- package/dist/config.js.map +0 -1
- package/src/config.ts +0 -177
- package/src/context.ts +0 -247
- package/src/deep-agent.ts +0 -104
- package/src/react-agent.ts +0 -576
- /package/{src → agent-runtime/src/middleware}/malformed-tool-call-middleware.ts +0 -0
- /package/{src → agent-runtime/src/types}/markdown-it-terminal.d.ts +0 -0
- /package/{src → agent-runtime/src/types}/marked-terminal.d.ts +0 -0
|
@@ -0,0 +1,1589 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@easynet/agent-common':
|
|
12
|
+
specifier: file:../../agent-common
|
|
13
|
+
version: file:../../agent-common
|
|
14
|
+
'@easynet/agent-memory':
|
|
15
|
+
specifier: file:../../agent-memory
|
|
16
|
+
version: file:../../agent-memory(@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))(deepagents@1.7.6(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
17
|
+
'@easynet/agent-model':
|
|
18
|
+
specifier: file:../../agent-model
|
|
19
|
+
version: file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
20
|
+
'@easynet/agent-runtime':
|
|
21
|
+
specifier: file:../../agent-runtime
|
|
22
|
+
version: file:../../agent-runtime(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(deepagents@1.7.6(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
23
|
+
'@easynet/agent-tool':
|
|
24
|
+
specifier: file:../../agent-tool
|
|
25
|
+
version: file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
26
|
+
'@easynet/agent-tool-buildin':
|
|
27
|
+
specifier: file:../../agent-tool-buildin
|
|
28
|
+
version: file:../../agent-tool-buildin(@easynet/agent-tool@file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))
|
|
29
|
+
'@langchain/core':
|
|
30
|
+
specifier: latest
|
|
31
|
+
version: 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
32
|
+
'@langchain/langgraph':
|
|
33
|
+
specifier: latest
|
|
34
|
+
version: 1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
35
|
+
'@langchain/langgraph-checkpoint':
|
|
36
|
+
specifier: latest
|
|
37
|
+
version: 1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
38
|
+
deepagents:
|
|
39
|
+
specifier: latest
|
|
40
|
+
version: 1.7.6(openai@6.22.0(zod@4.3.6))
|
|
41
|
+
langchain:
|
|
42
|
+
specifier: latest
|
|
43
|
+
version: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
44
|
+
zod:
|
|
45
|
+
specifier: latest
|
|
46
|
+
version: 4.3.6
|
|
47
|
+
devDependencies:
|
|
48
|
+
'@types/node':
|
|
49
|
+
specifier: ^22.10.0
|
|
50
|
+
version: 22.19.11
|
|
51
|
+
typescript:
|
|
52
|
+
specifier: ~5.7.2
|
|
53
|
+
version: 5.7.3
|
|
54
|
+
|
|
55
|
+
packages:
|
|
56
|
+
|
|
57
|
+
'@cfworker/json-schema@4.1.1':
|
|
58
|
+
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
59
|
+
|
|
60
|
+
'@easynet/agent-common@1.0.35':
|
|
61
|
+
resolution: {integrity: sha512-G5WgbpG/ESCpcP0UuH+RJd61WvLD4q5NyKVT+I7b7UK9DDhAhSMjNv331dZJlI16BrmRvvqtgf1Lzwf1m0ZA1g==}
|
|
62
|
+
engines: {node: '>=18.0.0'}
|
|
63
|
+
|
|
64
|
+
'@easynet/agent-common@file:../../agent-common':
|
|
65
|
+
resolution: {directory: ../../agent-common, type: directory}
|
|
66
|
+
engines: {node: '>=18.0.0'}
|
|
67
|
+
|
|
68
|
+
'@easynet/agent-memory@file:../../agent-memory':
|
|
69
|
+
resolution: {directory: ../../agent-memory, type: directory}
|
|
70
|
+
engines: {node: '>=18'}
|
|
71
|
+
peerDependencies:
|
|
72
|
+
'@langchain/langgraph': '*'
|
|
73
|
+
'@langchain/langgraph-checkpoint': '*'
|
|
74
|
+
better-sqlite3: ^12.6.2
|
|
75
|
+
cheerio: '*'
|
|
76
|
+
deepagents: 1.6.x
|
|
77
|
+
langchain: 1.2.x
|
|
78
|
+
mem0ai: '>=1.0.0'
|
|
79
|
+
pdf-parse: '*'
|
|
80
|
+
peerDependenciesMeta:
|
|
81
|
+
'@langchain/langgraph':
|
|
82
|
+
optional: true
|
|
83
|
+
'@langchain/langgraph-checkpoint':
|
|
84
|
+
optional: true
|
|
85
|
+
better-sqlite3:
|
|
86
|
+
optional: true
|
|
87
|
+
cheerio:
|
|
88
|
+
optional: true
|
|
89
|
+
deepagents:
|
|
90
|
+
optional: true
|
|
91
|
+
langchain:
|
|
92
|
+
optional: true
|
|
93
|
+
mem0ai:
|
|
94
|
+
optional: true
|
|
95
|
+
pdf-parse:
|
|
96
|
+
optional: true
|
|
97
|
+
|
|
98
|
+
'@easynet/agent-model@file:../../agent-model':
|
|
99
|
+
resolution: {directory: ../../agent-model, type: directory}
|
|
100
|
+
engines: {node: '>=18.0.0'}
|
|
101
|
+
hasBin: true
|
|
102
|
+
peerDependencies:
|
|
103
|
+
'@langchain/core': ^1.0.0
|
|
104
|
+
'@langchain/openai': ^1.2.4
|
|
105
|
+
langchain: ^1.2.18
|
|
106
|
+
|
|
107
|
+
'@easynet/agent-runtime@file:../../agent-runtime':
|
|
108
|
+
resolution: {directory: ../../agent-runtime, type: directory}
|
|
109
|
+
peerDependencies:
|
|
110
|
+
'@langchain/core': ^1.0.0
|
|
111
|
+
'@langchain/langgraph-checkpoint': '>=0.0.1'
|
|
112
|
+
deepagents: '>=0.0.1'
|
|
113
|
+
langchain: ^1.2.18
|
|
114
|
+
|
|
115
|
+
'@easynet/agent-skill@file:../../agent-skill':
|
|
116
|
+
resolution: {directory: ../../agent-skill, type: directory}
|
|
117
|
+
engines: {node: '>=18.0.0'}
|
|
118
|
+
peerDependencies:
|
|
119
|
+
'@easynet/agent-common': '*'
|
|
120
|
+
'@easynet/agent-model': '*'
|
|
121
|
+
peerDependenciesMeta:
|
|
122
|
+
'@easynet/agent-common':
|
|
123
|
+
optional: true
|
|
124
|
+
'@easynet/agent-model':
|
|
125
|
+
optional: true
|
|
126
|
+
|
|
127
|
+
'@easynet/agent-tool-buildin@file:../../agent-tool-buildin':
|
|
128
|
+
resolution: {directory: ../../agent-tool-buildin, type: directory}
|
|
129
|
+
peerDependencies:
|
|
130
|
+
'@easynet/agent-tool': '*'
|
|
131
|
+
|
|
132
|
+
'@easynet/agent-tool@file:../../agent-tool':
|
|
133
|
+
resolution: {directory: ../../agent-tool, type: directory}
|
|
134
|
+
engines: {node: '>=18.0.0'}
|
|
135
|
+
hasBin: true
|
|
136
|
+
peerDependencies:
|
|
137
|
+
'@langchain/core': '>=0.3.0'
|
|
138
|
+
'@modelcontextprotocol/sdk': '>=1.25.0'
|
|
139
|
+
langchain: '>=1.0.0'
|
|
140
|
+
zod: '>=3.23.0'
|
|
141
|
+
peerDependenciesMeta:
|
|
142
|
+
'@langchain/core':
|
|
143
|
+
optional: true
|
|
144
|
+
'@modelcontextprotocol/sdk':
|
|
145
|
+
optional: true
|
|
146
|
+
langchain:
|
|
147
|
+
optional: true
|
|
148
|
+
zod:
|
|
149
|
+
optional: true
|
|
150
|
+
|
|
151
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
152
|
+
resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
|
|
153
|
+
engines: {node: '>=18'}
|
|
154
|
+
cpu: [ppc64]
|
|
155
|
+
os: [aix]
|
|
156
|
+
|
|
157
|
+
'@esbuild/android-arm64@0.27.3':
|
|
158
|
+
resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
|
|
159
|
+
engines: {node: '>=18'}
|
|
160
|
+
cpu: [arm64]
|
|
161
|
+
os: [android]
|
|
162
|
+
|
|
163
|
+
'@esbuild/android-arm@0.27.3':
|
|
164
|
+
resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
|
|
165
|
+
engines: {node: '>=18'}
|
|
166
|
+
cpu: [arm]
|
|
167
|
+
os: [android]
|
|
168
|
+
|
|
169
|
+
'@esbuild/android-x64@0.27.3':
|
|
170
|
+
resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
|
|
171
|
+
engines: {node: '>=18'}
|
|
172
|
+
cpu: [x64]
|
|
173
|
+
os: [android]
|
|
174
|
+
|
|
175
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
176
|
+
resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
|
|
177
|
+
engines: {node: '>=18'}
|
|
178
|
+
cpu: [arm64]
|
|
179
|
+
os: [darwin]
|
|
180
|
+
|
|
181
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
182
|
+
resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
|
|
183
|
+
engines: {node: '>=18'}
|
|
184
|
+
cpu: [x64]
|
|
185
|
+
os: [darwin]
|
|
186
|
+
|
|
187
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
188
|
+
resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
|
|
189
|
+
engines: {node: '>=18'}
|
|
190
|
+
cpu: [arm64]
|
|
191
|
+
os: [freebsd]
|
|
192
|
+
|
|
193
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
194
|
+
resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
|
|
195
|
+
engines: {node: '>=18'}
|
|
196
|
+
cpu: [x64]
|
|
197
|
+
os: [freebsd]
|
|
198
|
+
|
|
199
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
200
|
+
resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
|
|
201
|
+
engines: {node: '>=18'}
|
|
202
|
+
cpu: [arm64]
|
|
203
|
+
os: [linux]
|
|
204
|
+
|
|
205
|
+
'@esbuild/linux-arm@0.27.3':
|
|
206
|
+
resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
|
|
207
|
+
engines: {node: '>=18'}
|
|
208
|
+
cpu: [arm]
|
|
209
|
+
os: [linux]
|
|
210
|
+
|
|
211
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
212
|
+
resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
|
|
213
|
+
engines: {node: '>=18'}
|
|
214
|
+
cpu: [ia32]
|
|
215
|
+
os: [linux]
|
|
216
|
+
|
|
217
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
218
|
+
resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
|
|
219
|
+
engines: {node: '>=18'}
|
|
220
|
+
cpu: [loong64]
|
|
221
|
+
os: [linux]
|
|
222
|
+
|
|
223
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
224
|
+
resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
|
|
225
|
+
engines: {node: '>=18'}
|
|
226
|
+
cpu: [mips64el]
|
|
227
|
+
os: [linux]
|
|
228
|
+
|
|
229
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
230
|
+
resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
|
|
231
|
+
engines: {node: '>=18'}
|
|
232
|
+
cpu: [ppc64]
|
|
233
|
+
os: [linux]
|
|
234
|
+
|
|
235
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
236
|
+
resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
|
|
237
|
+
engines: {node: '>=18'}
|
|
238
|
+
cpu: [riscv64]
|
|
239
|
+
os: [linux]
|
|
240
|
+
|
|
241
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
242
|
+
resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
|
|
243
|
+
engines: {node: '>=18'}
|
|
244
|
+
cpu: [s390x]
|
|
245
|
+
os: [linux]
|
|
246
|
+
|
|
247
|
+
'@esbuild/linux-x64@0.27.3':
|
|
248
|
+
resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
|
|
249
|
+
engines: {node: '>=18'}
|
|
250
|
+
cpu: [x64]
|
|
251
|
+
os: [linux]
|
|
252
|
+
|
|
253
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
254
|
+
resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
|
|
255
|
+
engines: {node: '>=18'}
|
|
256
|
+
cpu: [arm64]
|
|
257
|
+
os: [netbsd]
|
|
258
|
+
|
|
259
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
260
|
+
resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
|
|
261
|
+
engines: {node: '>=18'}
|
|
262
|
+
cpu: [x64]
|
|
263
|
+
os: [netbsd]
|
|
264
|
+
|
|
265
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
266
|
+
resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
|
|
267
|
+
engines: {node: '>=18'}
|
|
268
|
+
cpu: [arm64]
|
|
269
|
+
os: [openbsd]
|
|
270
|
+
|
|
271
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
272
|
+
resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
|
|
273
|
+
engines: {node: '>=18'}
|
|
274
|
+
cpu: [x64]
|
|
275
|
+
os: [openbsd]
|
|
276
|
+
|
|
277
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
278
|
+
resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
|
|
279
|
+
engines: {node: '>=18'}
|
|
280
|
+
cpu: [arm64]
|
|
281
|
+
os: [openharmony]
|
|
282
|
+
|
|
283
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
284
|
+
resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
|
|
285
|
+
engines: {node: '>=18'}
|
|
286
|
+
cpu: [x64]
|
|
287
|
+
os: [sunos]
|
|
288
|
+
|
|
289
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
290
|
+
resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
|
|
291
|
+
engines: {node: '>=18'}
|
|
292
|
+
cpu: [arm64]
|
|
293
|
+
os: [win32]
|
|
294
|
+
|
|
295
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
296
|
+
resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
|
|
297
|
+
engines: {node: '>=18'}
|
|
298
|
+
cpu: [ia32]
|
|
299
|
+
os: [win32]
|
|
300
|
+
|
|
301
|
+
'@esbuild/win32-x64@0.27.3':
|
|
302
|
+
resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
|
|
303
|
+
engines: {node: '>=18'}
|
|
304
|
+
cpu: [x64]
|
|
305
|
+
os: [win32]
|
|
306
|
+
|
|
307
|
+
'@langchain/core@1.1.24':
|
|
308
|
+
resolution: {integrity: sha512-u6l0dmMHN/2PCsY6stXoh9CH1OTlVR5Gjz0JjT1XRPuidAlu3kTq4ivW95xCog/PRhiAsCh6GCEC4/PqhNrcgQ==}
|
|
309
|
+
engines: {node: '>=20'}
|
|
310
|
+
|
|
311
|
+
'@langchain/langgraph-checkpoint@1.0.0':
|
|
312
|
+
resolution: {integrity: sha512-xrclBGvNCXDmi0Nz28t3vjpxSH6UYx6w5XAXSiiB1WEdc2xD2iY/a913I3x3a31XpInUW/GGfXXfePfaghV54A==}
|
|
313
|
+
engines: {node: '>=18'}
|
|
314
|
+
peerDependencies:
|
|
315
|
+
'@langchain/core': ^1.0.1
|
|
316
|
+
|
|
317
|
+
'@langchain/langgraph-sdk@1.6.2':
|
|
318
|
+
resolution: {integrity: sha512-UzRZsnDqdTmeitf/K5yZnVdl+V+7bDj/hQUXm+Y8TwWUuKtWUDocIReKgAmPQLoIz0AN8bOUt0QGnIISmCZyuA==}
|
|
319
|
+
peerDependencies:
|
|
320
|
+
'@langchain/core': ^1.1.16
|
|
321
|
+
react: ^18 || ^19
|
|
322
|
+
react-dom: ^18 || ^19
|
|
323
|
+
peerDependenciesMeta:
|
|
324
|
+
'@langchain/core':
|
|
325
|
+
optional: true
|
|
326
|
+
react:
|
|
327
|
+
optional: true
|
|
328
|
+
react-dom:
|
|
329
|
+
optional: true
|
|
330
|
+
|
|
331
|
+
'@langchain/langgraph@1.1.4':
|
|
332
|
+
resolution: {integrity: sha512-9OhRF+7Zvcpure8TLtBrxfJDo0PAoHZhfzcPL6M3CsGXiYqLWm5tQe+FYqn9zRIV7IwphqVEl1QDNbOkVgo+kw==}
|
|
333
|
+
engines: {node: '>=18'}
|
|
334
|
+
peerDependencies:
|
|
335
|
+
'@langchain/core': ^1.1.16
|
|
336
|
+
zod: ^3.25.32 || ^4.2.0
|
|
337
|
+
zod-to-json-schema: ^3.x
|
|
338
|
+
peerDependenciesMeta:
|
|
339
|
+
zod-to-json-schema:
|
|
340
|
+
optional: true
|
|
341
|
+
|
|
342
|
+
'@langchain/openai@1.2.7':
|
|
343
|
+
resolution: {integrity: sha512-vR9zoF0/EZ03X0Tc6woIEWRDSDSr2l64n+MQCW8NduScJtBJs5r/Ng3Lrp2bjtJQywEMQoOhcrV2DMmAIPWgnw==}
|
|
344
|
+
engines: {node: '>=20'}
|
|
345
|
+
peerDependencies:
|
|
346
|
+
'@langchain/core': ^1.0.0
|
|
347
|
+
|
|
348
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
349
|
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
350
|
+
engines: {node: '>= 8'}
|
|
351
|
+
|
|
352
|
+
'@nodelib/fs.stat@2.0.5':
|
|
353
|
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
|
354
|
+
engines: {node: '>= 8'}
|
|
355
|
+
|
|
356
|
+
'@nodelib/fs.walk@1.2.8':
|
|
357
|
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
358
|
+
engines: {node: '>= 8'}
|
|
359
|
+
|
|
360
|
+
'@standard-schema/spec@1.1.0':
|
|
361
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
362
|
+
|
|
363
|
+
'@types/json-schema@7.0.15':
|
|
364
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
365
|
+
|
|
366
|
+
'@types/node@22.19.11':
|
|
367
|
+
resolution: {integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==}
|
|
368
|
+
|
|
369
|
+
'@types/retry@0.12.2':
|
|
370
|
+
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
|
|
371
|
+
|
|
372
|
+
'@types/uuid@10.0.0':
|
|
373
|
+
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
374
|
+
|
|
375
|
+
ajv-formats@3.0.1:
|
|
376
|
+
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
|
|
377
|
+
peerDependencies:
|
|
378
|
+
ajv: ^8.0.0
|
|
379
|
+
peerDependenciesMeta:
|
|
380
|
+
ajv:
|
|
381
|
+
optional: true
|
|
382
|
+
|
|
383
|
+
ajv@8.18.0:
|
|
384
|
+
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
385
|
+
|
|
386
|
+
ansi-styles@3.2.1:
|
|
387
|
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
|
388
|
+
engines: {node: '>=4'}
|
|
389
|
+
|
|
390
|
+
ansi-styles@4.3.0:
|
|
391
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
392
|
+
engines: {node: '>=8'}
|
|
393
|
+
|
|
394
|
+
ansi-styles@5.2.0:
|
|
395
|
+
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
|
|
396
|
+
engines: {node: '>=10'}
|
|
397
|
+
|
|
398
|
+
ansicolors@0.2.1:
|
|
399
|
+
resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==}
|
|
400
|
+
|
|
401
|
+
argparse@2.0.1:
|
|
402
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
403
|
+
|
|
404
|
+
asynckit@0.4.0:
|
|
405
|
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
406
|
+
|
|
407
|
+
axios@1.13.5:
|
|
408
|
+
resolution: {integrity: sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==}
|
|
409
|
+
|
|
410
|
+
base64-js@1.5.1:
|
|
411
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
412
|
+
|
|
413
|
+
boolbase@1.0.0:
|
|
414
|
+
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
415
|
+
|
|
416
|
+
braces@3.0.3:
|
|
417
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
418
|
+
engines: {node: '>=8'}
|
|
419
|
+
|
|
420
|
+
call-bind-apply-helpers@1.0.2:
|
|
421
|
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
422
|
+
engines: {node: '>= 0.4'}
|
|
423
|
+
|
|
424
|
+
camelcase@6.3.0:
|
|
425
|
+
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
426
|
+
engines: {node: '>=10'}
|
|
427
|
+
|
|
428
|
+
cardinal@1.0.0:
|
|
429
|
+
resolution: {integrity: sha512-INsuF4GyiFLk8C91FPokbKTc/rwHqV4JnfatVZ6GPhguP1qmkRWX2dp5tepYboYdPpGWisLVLI+KsXoXFPRSMg==}
|
|
430
|
+
hasBin: true
|
|
431
|
+
|
|
432
|
+
chalk@4.1.2:
|
|
433
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
434
|
+
engines: {node: '>=10'}
|
|
435
|
+
|
|
436
|
+
cli-table@0.3.11:
|
|
437
|
+
resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==}
|
|
438
|
+
engines: {node: '>= 0.2.0'}
|
|
439
|
+
|
|
440
|
+
cockatiel@3.2.1:
|
|
441
|
+
resolution: {integrity: sha512-gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q==}
|
|
442
|
+
engines: {node: '>=16'}
|
|
443
|
+
|
|
444
|
+
color-convert@1.9.3:
|
|
445
|
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
|
446
|
+
|
|
447
|
+
color-convert@2.0.1:
|
|
448
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
449
|
+
engines: {node: '>=7.0.0'}
|
|
450
|
+
|
|
451
|
+
color-name@1.1.3:
|
|
452
|
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
|
|
453
|
+
|
|
454
|
+
color-name@1.1.4:
|
|
455
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
456
|
+
|
|
457
|
+
colors@1.0.3:
|
|
458
|
+
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
|
|
459
|
+
engines: {node: '>=0.1.90'}
|
|
460
|
+
|
|
461
|
+
combined-stream@1.0.8:
|
|
462
|
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
463
|
+
engines: {node: '>= 0.8'}
|
|
464
|
+
|
|
465
|
+
console-table-printer@2.15.0:
|
|
466
|
+
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
467
|
+
|
|
468
|
+
css-select@5.2.2:
|
|
469
|
+
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
|
|
470
|
+
|
|
471
|
+
css-what@6.2.2:
|
|
472
|
+
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
|
|
473
|
+
engines: {node: '>= 6'}
|
|
474
|
+
|
|
475
|
+
decamelize@1.2.0:
|
|
476
|
+
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
477
|
+
engines: {node: '>=0.10.0'}
|
|
478
|
+
|
|
479
|
+
deepagents@1.7.6:
|
|
480
|
+
resolution: {integrity: sha512-mHLx6P5/UHYh7X3RDQNM4p1pLtuWWqGMcF2zQg8uyRSfpTKaDiJWk1Xq1QE3cRQ8okzr/bPOnHubS205XKl1MQ==}
|
|
481
|
+
|
|
482
|
+
delayed-stream@1.0.0:
|
|
483
|
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
484
|
+
engines: {node: '>=0.4.0'}
|
|
485
|
+
|
|
486
|
+
dom-serializer@2.0.0:
|
|
487
|
+
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
|
|
488
|
+
|
|
489
|
+
domelementtype@2.3.0:
|
|
490
|
+
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
|
491
|
+
|
|
492
|
+
domhandler@5.0.3:
|
|
493
|
+
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
|
|
494
|
+
engines: {node: '>= 4'}
|
|
495
|
+
|
|
496
|
+
domutils@3.2.2:
|
|
497
|
+
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
|
|
498
|
+
|
|
499
|
+
dunder-proto@1.0.1:
|
|
500
|
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
501
|
+
engines: {node: '>= 0.4'}
|
|
502
|
+
|
|
503
|
+
entities@4.5.0:
|
|
504
|
+
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
505
|
+
engines: {node: '>=0.12'}
|
|
506
|
+
|
|
507
|
+
es-define-property@1.0.1:
|
|
508
|
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
509
|
+
engines: {node: '>= 0.4'}
|
|
510
|
+
|
|
511
|
+
es-errors@1.3.0:
|
|
512
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
513
|
+
engines: {node: '>= 0.4'}
|
|
514
|
+
|
|
515
|
+
es-object-atoms@1.1.1:
|
|
516
|
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
|
517
|
+
engines: {node: '>= 0.4'}
|
|
518
|
+
|
|
519
|
+
es-set-tostringtag@2.1.0:
|
|
520
|
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
521
|
+
engines: {node: '>= 0.4'}
|
|
522
|
+
|
|
523
|
+
esbuild@0.27.3:
|
|
524
|
+
resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
|
|
525
|
+
engines: {node: '>=18'}
|
|
526
|
+
hasBin: true
|
|
527
|
+
|
|
528
|
+
esprima@3.0.0:
|
|
529
|
+
resolution: {integrity: sha512-xoBq/MIShSydNZOkjkoCEjqod963yHNXTLC40ypBhop6yPqflPz/vTinmCfSrGcywVLnSftRf6a0kJLdFdzemw==}
|
|
530
|
+
engines: {node: '>=0.10.0'}
|
|
531
|
+
hasBin: true
|
|
532
|
+
|
|
533
|
+
eventemitter3@4.0.7:
|
|
534
|
+
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
535
|
+
|
|
536
|
+
eventemitter3@5.0.4:
|
|
537
|
+
resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
|
|
538
|
+
|
|
539
|
+
fast-deep-equal@3.1.3:
|
|
540
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
541
|
+
|
|
542
|
+
fast-glob@3.3.3:
|
|
543
|
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
544
|
+
engines: {node: '>=8.6.0'}
|
|
545
|
+
|
|
546
|
+
fast-uri@3.1.0:
|
|
547
|
+
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
548
|
+
|
|
549
|
+
fastq@1.20.1:
|
|
550
|
+
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
551
|
+
|
|
552
|
+
fill-range@7.1.1:
|
|
553
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
554
|
+
engines: {node: '>=8'}
|
|
555
|
+
|
|
556
|
+
follow-redirects@1.15.11:
|
|
557
|
+
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
|
558
|
+
engines: {node: '>=4.0'}
|
|
559
|
+
peerDependencies:
|
|
560
|
+
debug: '*'
|
|
561
|
+
peerDependenciesMeta:
|
|
562
|
+
debug:
|
|
563
|
+
optional: true
|
|
564
|
+
|
|
565
|
+
form-data@4.0.5:
|
|
566
|
+
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
|
|
567
|
+
engines: {node: '>= 6'}
|
|
568
|
+
|
|
569
|
+
fsevents@2.3.3:
|
|
570
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
571
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
572
|
+
os: [darwin]
|
|
573
|
+
|
|
574
|
+
function-bind@1.1.2:
|
|
575
|
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
576
|
+
|
|
577
|
+
get-intrinsic@1.3.0:
|
|
578
|
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
579
|
+
engines: {node: '>= 0.4'}
|
|
580
|
+
|
|
581
|
+
get-proto@1.0.1:
|
|
582
|
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
583
|
+
engines: {node: '>= 0.4'}
|
|
584
|
+
|
|
585
|
+
get-tsconfig@4.13.6:
|
|
586
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
587
|
+
|
|
588
|
+
glob-parent@5.1.2:
|
|
589
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
590
|
+
engines: {node: '>= 6'}
|
|
591
|
+
|
|
592
|
+
gopd@1.2.0:
|
|
593
|
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
|
594
|
+
engines: {node: '>= 0.4'}
|
|
595
|
+
|
|
596
|
+
has-flag@4.0.0:
|
|
597
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
598
|
+
engines: {node: '>=8'}
|
|
599
|
+
|
|
600
|
+
has-symbols@1.1.0:
|
|
601
|
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
602
|
+
engines: {node: '>= 0.4'}
|
|
603
|
+
|
|
604
|
+
has-tostringtag@1.0.2:
|
|
605
|
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
606
|
+
engines: {node: '>= 0.4'}
|
|
607
|
+
|
|
608
|
+
hasown@2.0.2:
|
|
609
|
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
610
|
+
engines: {node: '>= 0.4'}
|
|
611
|
+
|
|
612
|
+
he@1.2.0:
|
|
613
|
+
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
|
|
614
|
+
hasBin: true
|
|
615
|
+
|
|
616
|
+
is-extglob@2.1.1:
|
|
617
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
618
|
+
engines: {node: '>=0.10.0'}
|
|
619
|
+
|
|
620
|
+
is-glob@4.0.3:
|
|
621
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
622
|
+
engines: {node: '>=0.10.0'}
|
|
623
|
+
|
|
624
|
+
is-network-error@1.3.0:
|
|
625
|
+
resolution: {integrity: sha512-6oIwpsgRfnDiyEDLMay/GqCl3HoAtH5+RUKW29gYkL0QA+ipzpDLA16yQs7/RHCSu+BwgbJaOUqa4A99qNVQVw==}
|
|
626
|
+
engines: {node: '>=16'}
|
|
627
|
+
|
|
628
|
+
is-number@7.0.0:
|
|
629
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
630
|
+
engines: {node: '>=0.12.0'}
|
|
631
|
+
|
|
632
|
+
jmespath@0.16.0:
|
|
633
|
+
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
|
|
634
|
+
engines: {node: '>= 0.6.0'}
|
|
635
|
+
|
|
636
|
+
js-tiktoken@1.0.21:
|
|
637
|
+
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
638
|
+
|
|
639
|
+
js-yaml@4.1.1:
|
|
640
|
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
641
|
+
hasBin: true
|
|
642
|
+
|
|
643
|
+
json-schema-traverse@1.0.0:
|
|
644
|
+
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
645
|
+
|
|
646
|
+
langchain@1.2.24:
|
|
647
|
+
resolution: {integrity: sha512-NpaOmDZ4dP16sLkY+Y49Q9mrV2fdTy81t+yTw7f3K7/zZtvuQk6IH/bIzfy3bdOD8TERethvR2mOmgueRDbZBw==}
|
|
648
|
+
engines: {node: '>=20'}
|
|
649
|
+
peerDependencies:
|
|
650
|
+
'@langchain/core': ^1.1.24
|
|
651
|
+
|
|
652
|
+
langsmith@0.5.4:
|
|
653
|
+
resolution: {integrity: sha512-qYkNIoKpf0ZYt+cYzrDV+XI3FCexApmZmp8EMs3eDTMv0OvrHMLoxJ9IpkeoXJSX24+GPk0/jXjKx2hWerpy9w==}
|
|
654
|
+
peerDependencies:
|
|
655
|
+
'@opentelemetry/api': '*'
|
|
656
|
+
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
657
|
+
'@opentelemetry/sdk-trace-base': '*'
|
|
658
|
+
openai: '*'
|
|
659
|
+
peerDependenciesMeta:
|
|
660
|
+
'@opentelemetry/api':
|
|
661
|
+
optional: true
|
|
662
|
+
'@opentelemetry/exporter-trace-otlp-proto':
|
|
663
|
+
optional: true
|
|
664
|
+
'@opentelemetry/sdk-trace-base':
|
|
665
|
+
optional: true
|
|
666
|
+
openai:
|
|
667
|
+
optional: true
|
|
668
|
+
|
|
669
|
+
linkify-it@5.0.0:
|
|
670
|
+
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
|
|
671
|
+
|
|
672
|
+
lodash.merge@4.6.2:
|
|
673
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
674
|
+
|
|
675
|
+
markdown-it-terminal@0.4.0:
|
|
676
|
+
resolution: {integrity: sha512-NeXtgpIK6jBciHTm9UhiPnyHDdqyVIdRPJ+KdQtZaf/wR74gvhCNbw5li4TYsxRp5u3ZoHEF4DwpECeZqyCw+w==}
|
|
677
|
+
peerDependencies:
|
|
678
|
+
markdown-it: '>= 13.0.0'
|
|
679
|
+
|
|
680
|
+
markdown-it@14.1.1:
|
|
681
|
+
resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
|
|
682
|
+
hasBin: true
|
|
683
|
+
|
|
684
|
+
math-intrinsics@1.1.0:
|
|
685
|
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
686
|
+
engines: {node: '>= 0.4'}
|
|
687
|
+
|
|
688
|
+
mdurl@2.0.0:
|
|
689
|
+
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
|
|
690
|
+
|
|
691
|
+
merge2@1.4.1:
|
|
692
|
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
693
|
+
engines: {node: '>= 8'}
|
|
694
|
+
|
|
695
|
+
micromatch@4.0.8:
|
|
696
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
697
|
+
engines: {node: '>=8.6'}
|
|
698
|
+
|
|
699
|
+
mime-db@1.52.0:
|
|
700
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
701
|
+
engines: {node: '>= 0.6'}
|
|
702
|
+
|
|
703
|
+
mime-types@2.1.35:
|
|
704
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
705
|
+
engines: {node: '>= 0.6'}
|
|
706
|
+
|
|
707
|
+
mustache@4.2.0:
|
|
708
|
+
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
|
|
709
|
+
hasBin: true
|
|
710
|
+
|
|
711
|
+
node-html-parser@6.1.13:
|
|
712
|
+
resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
|
|
713
|
+
|
|
714
|
+
nth-check@2.1.1:
|
|
715
|
+
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
|
|
716
|
+
|
|
717
|
+
openai@6.22.0:
|
|
718
|
+
resolution: {integrity: sha512-7Yvy17F33Bi9RutWbsaYt5hJEEJ/krRPOrwan+f9aCPuMat1WVsb2VNSII5W1EksKT6fF69TG/xj4XzodK3JZw==}
|
|
719
|
+
hasBin: true
|
|
720
|
+
peerDependencies:
|
|
721
|
+
ws: ^8.18.0
|
|
722
|
+
zod: ^3.25 || ^4.0
|
|
723
|
+
peerDependenciesMeta:
|
|
724
|
+
ws:
|
|
725
|
+
optional: true
|
|
726
|
+
zod:
|
|
727
|
+
optional: true
|
|
728
|
+
|
|
729
|
+
p-finally@1.0.0:
|
|
730
|
+
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
731
|
+
engines: {node: '>=4'}
|
|
732
|
+
|
|
733
|
+
p-queue@6.6.2:
|
|
734
|
+
resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
|
|
735
|
+
engines: {node: '>=8'}
|
|
736
|
+
|
|
737
|
+
p-queue@9.1.0:
|
|
738
|
+
resolution: {integrity: sha512-O/ZPaXuQV29uSLbxWBGGZO1mCQXV2BLIwUr59JUU9SoH76mnYvtms7aafH/isNSNGwuEfP6W/4xD0/TJXxrizw==}
|
|
739
|
+
engines: {node: '>=20'}
|
|
740
|
+
|
|
741
|
+
p-retry@6.2.1:
|
|
742
|
+
resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
|
|
743
|
+
engines: {node: '>=16.17'}
|
|
744
|
+
|
|
745
|
+
p-retry@7.1.1:
|
|
746
|
+
resolution: {integrity: sha512-J5ApzjyRkkf601HpEeykoiCvzHQjWxPAHhyjFcEUP2SWq0+35NKh8TLhpLw+Dkq5TZBFvUM6UigdE9hIVYTl5w==}
|
|
747
|
+
engines: {node: '>=20'}
|
|
748
|
+
|
|
749
|
+
p-timeout@3.2.0:
|
|
750
|
+
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
|
|
751
|
+
engines: {node: '>=8'}
|
|
752
|
+
|
|
753
|
+
p-timeout@6.1.4:
|
|
754
|
+
resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==}
|
|
755
|
+
engines: {node: '>=14.16'}
|
|
756
|
+
|
|
757
|
+
p-timeout@7.0.1:
|
|
758
|
+
resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==}
|
|
759
|
+
engines: {node: '>=20'}
|
|
760
|
+
|
|
761
|
+
picomatch@2.3.1:
|
|
762
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
763
|
+
engines: {node: '>=8.6'}
|
|
764
|
+
|
|
765
|
+
proxy-from-env@1.1.0:
|
|
766
|
+
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
|
767
|
+
|
|
768
|
+
punycode.js@2.3.1:
|
|
769
|
+
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
|
|
770
|
+
engines: {node: '>=6'}
|
|
771
|
+
|
|
772
|
+
queue-microtask@1.2.3:
|
|
773
|
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
774
|
+
|
|
775
|
+
redeyed@1.0.1:
|
|
776
|
+
resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==}
|
|
777
|
+
|
|
778
|
+
require-from-string@2.0.2:
|
|
779
|
+
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
780
|
+
engines: {node: '>=0.10.0'}
|
|
781
|
+
|
|
782
|
+
resolve-pkg-maps@1.0.0:
|
|
783
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
784
|
+
|
|
785
|
+
retry@0.13.1:
|
|
786
|
+
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
|
|
787
|
+
engines: {node: '>= 4'}
|
|
788
|
+
|
|
789
|
+
reusify@1.1.0:
|
|
790
|
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
791
|
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
792
|
+
|
|
793
|
+
run-parallel@1.2.0:
|
|
794
|
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
795
|
+
|
|
796
|
+
semver@7.7.4:
|
|
797
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
798
|
+
engines: {node: '>=10'}
|
|
799
|
+
hasBin: true
|
|
800
|
+
|
|
801
|
+
simple-wcswidth@1.1.2:
|
|
802
|
+
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
803
|
+
|
|
804
|
+
supports-color@7.2.0:
|
|
805
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
806
|
+
engines: {node: '>=8'}
|
|
807
|
+
|
|
808
|
+
to-regex-range@5.0.1:
|
|
809
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
810
|
+
engines: {node: '>=8.0'}
|
|
811
|
+
|
|
812
|
+
tsx@4.21.0:
|
|
813
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
814
|
+
engines: {node: '>=18.0.0'}
|
|
815
|
+
hasBin: true
|
|
816
|
+
|
|
817
|
+
typescript@5.7.3:
|
|
818
|
+
resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
|
|
819
|
+
engines: {node: '>=14.17'}
|
|
820
|
+
hasBin: true
|
|
821
|
+
|
|
822
|
+
uc.micro@2.1.0:
|
|
823
|
+
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
|
|
824
|
+
|
|
825
|
+
undici-types@6.21.0:
|
|
826
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
827
|
+
|
|
828
|
+
uuid@10.0.0:
|
|
829
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
830
|
+
hasBin: true
|
|
831
|
+
|
|
832
|
+
uuid@11.1.0:
|
|
833
|
+
resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
|
|
834
|
+
hasBin: true
|
|
835
|
+
|
|
836
|
+
uuid@13.0.0:
|
|
837
|
+
resolution: {integrity: sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==}
|
|
838
|
+
hasBin: true
|
|
839
|
+
|
|
840
|
+
yaml@2.8.2:
|
|
841
|
+
resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
|
|
842
|
+
engines: {node: '>= 14.6'}
|
|
843
|
+
hasBin: true
|
|
844
|
+
|
|
845
|
+
zod@3.25.76:
|
|
846
|
+
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
|
|
847
|
+
|
|
848
|
+
zod@4.3.6:
|
|
849
|
+
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
850
|
+
|
|
851
|
+
snapshots:
|
|
852
|
+
|
|
853
|
+
'@cfworker/json-schema@4.1.1': {}
|
|
854
|
+
|
|
855
|
+
'@easynet/agent-common@1.0.35':
|
|
856
|
+
dependencies:
|
|
857
|
+
yaml: 2.8.2
|
|
858
|
+
|
|
859
|
+
'@easynet/agent-common@file:../../agent-common':
|
|
860
|
+
dependencies:
|
|
861
|
+
yaml: 2.8.2
|
|
862
|
+
|
|
863
|
+
'@easynet/agent-memory@file:../../agent-memory(@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))(deepagents@1.7.6(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))':
|
|
864
|
+
dependencies:
|
|
865
|
+
'@easynet/agent-common': 1.0.35
|
|
866
|
+
optionalDependencies:
|
|
867
|
+
'@langchain/langgraph': 1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
868
|
+
'@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
869
|
+
deepagents: 1.7.6(openai@6.22.0(zod@4.3.6))
|
|
870
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
871
|
+
|
|
872
|
+
'@easynet/agent-model@file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))':
|
|
873
|
+
dependencies:
|
|
874
|
+
'@easynet/agent-common': 1.0.35
|
|
875
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
876
|
+
'@langchain/openai': 1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
877
|
+
axios: 1.13.5
|
|
878
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
879
|
+
yaml: 2.8.2
|
|
880
|
+
zod: 3.25.76
|
|
881
|
+
transitivePeerDependencies:
|
|
882
|
+
- debug
|
|
883
|
+
|
|
884
|
+
'@easynet/agent-runtime@file:../../agent-runtime(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(deepagents@1.7.6(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))':
|
|
885
|
+
dependencies:
|
|
886
|
+
'@easynet/agent-common': file:../../agent-common
|
|
887
|
+
'@easynet/agent-memory': file:../../agent-memory(@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))(deepagents@1.7.6(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
888
|
+
'@easynet/agent-model': file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
889
|
+
'@easynet/agent-skill': file:../../agent-skill(@easynet/agent-common@file:../../agent-common)(@easynet/agent-model@file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))))
|
|
890
|
+
'@easynet/agent-tool': file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@3.25.76)
|
|
891
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
892
|
+
'@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
893
|
+
deepagents: 1.7.6(openai@6.22.0(zod@4.3.6))
|
|
894
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
895
|
+
markdown-it: 14.1.1
|
|
896
|
+
markdown-it-terminal: 0.4.0(markdown-it@14.1.1)
|
|
897
|
+
zod: 3.25.76
|
|
898
|
+
transitivePeerDependencies:
|
|
899
|
+
- '@langchain/langgraph'
|
|
900
|
+
- '@langchain/openai'
|
|
901
|
+
- '@modelcontextprotocol/sdk'
|
|
902
|
+
- better-sqlite3
|
|
903
|
+
- cheerio
|
|
904
|
+
- debug
|
|
905
|
+
- mem0ai
|
|
906
|
+
- pdf-parse
|
|
907
|
+
- ws
|
|
908
|
+
|
|
909
|
+
'@easynet/agent-skill@file:../../agent-skill(@easynet/agent-common@file:../../agent-common)(@easynet/agent-model@file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))))':
|
|
910
|
+
dependencies:
|
|
911
|
+
js-yaml: 4.1.1
|
|
912
|
+
optionalDependencies:
|
|
913
|
+
'@easynet/agent-common': file:../../agent-common
|
|
914
|
+
'@easynet/agent-model': file:../../agent-model(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))
|
|
915
|
+
|
|
916
|
+
'@easynet/agent-tool-buildin@file:../../agent-tool-buildin(@easynet/agent-tool@file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@4.3.6))':
|
|
917
|
+
dependencies:
|
|
918
|
+
'@easynet/agent-tool': file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
919
|
+
node-html-parser: 6.1.13
|
|
920
|
+
|
|
921
|
+
'@easynet/agent-tool@file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@3.25.76)':
|
|
922
|
+
dependencies:
|
|
923
|
+
'@easynet/agent-common': 1.0.35
|
|
924
|
+
'@langchain/openai': 1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
925
|
+
ajv: 8.18.0
|
|
926
|
+
ajv-formats: 3.0.1(ajv@8.18.0)
|
|
927
|
+
cockatiel: 3.2.1
|
|
928
|
+
eventemitter3: 5.0.4
|
|
929
|
+
jmespath: 0.16.0
|
|
930
|
+
js-yaml: 4.1.1
|
|
931
|
+
mustache: 4.2.0
|
|
932
|
+
p-retry: 6.2.1
|
|
933
|
+
p-timeout: 6.1.4
|
|
934
|
+
tsx: 4.21.0
|
|
935
|
+
typescript: 5.7.3
|
|
936
|
+
uuid: 11.1.0
|
|
937
|
+
optionalDependencies:
|
|
938
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
939
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
940
|
+
zod: 3.25.76
|
|
941
|
+
transitivePeerDependencies:
|
|
942
|
+
- ws
|
|
943
|
+
|
|
944
|
+
'@easynet/agent-tool@file:../../agent-tool(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)':
|
|
945
|
+
dependencies:
|
|
946
|
+
'@easynet/agent-common': 1.0.35
|
|
947
|
+
'@langchain/openai': 1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
948
|
+
ajv: 8.18.0
|
|
949
|
+
ajv-formats: 3.0.1(ajv@8.18.0)
|
|
950
|
+
cockatiel: 3.2.1
|
|
951
|
+
eventemitter3: 5.0.4
|
|
952
|
+
jmespath: 0.16.0
|
|
953
|
+
js-yaml: 4.1.1
|
|
954
|
+
mustache: 4.2.0
|
|
955
|
+
p-retry: 6.2.1
|
|
956
|
+
p-timeout: 6.1.4
|
|
957
|
+
tsx: 4.21.0
|
|
958
|
+
typescript: 5.7.3
|
|
959
|
+
uuid: 11.1.0
|
|
960
|
+
optionalDependencies:
|
|
961
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
962
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
963
|
+
zod: 4.3.6
|
|
964
|
+
transitivePeerDependencies:
|
|
965
|
+
- ws
|
|
966
|
+
|
|
967
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
968
|
+
optional: true
|
|
969
|
+
|
|
970
|
+
'@esbuild/android-arm64@0.27.3':
|
|
971
|
+
optional: true
|
|
972
|
+
|
|
973
|
+
'@esbuild/android-arm@0.27.3':
|
|
974
|
+
optional: true
|
|
975
|
+
|
|
976
|
+
'@esbuild/android-x64@0.27.3':
|
|
977
|
+
optional: true
|
|
978
|
+
|
|
979
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
980
|
+
optional: true
|
|
981
|
+
|
|
982
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
983
|
+
optional: true
|
|
984
|
+
|
|
985
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
986
|
+
optional: true
|
|
987
|
+
|
|
988
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
989
|
+
optional: true
|
|
990
|
+
|
|
991
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
992
|
+
optional: true
|
|
993
|
+
|
|
994
|
+
'@esbuild/linux-arm@0.27.3':
|
|
995
|
+
optional: true
|
|
996
|
+
|
|
997
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
998
|
+
optional: true
|
|
999
|
+
|
|
1000
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
1001
|
+
optional: true
|
|
1002
|
+
|
|
1003
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
1004
|
+
optional: true
|
|
1005
|
+
|
|
1006
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
1007
|
+
optional: true
|
|
1008
|
+
|
|
1009
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
1010
|
+
optional: true
|
|
1011
|
+
|
|
1012
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
1013
|
+
optional: true
|
|
1014
|
+
|
|
1015
|
+
'@esbuild/linux-x64@0.27.3':
|
|
1016
|
+
optional: true
|
|
1017
|
+
|
|
1018
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
1019
|
+
optional: true
|
|
1020
|
+
|
|
1021
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
1022
|
+
optional: true
|
|
1023
|
+
|
|
1024
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
1025
|
+
optional: true
|
|
1026
|
+
|
|
1027
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
1028
|
+
optional: true
|
|
1029
|
+
|
|
1030
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
1031
|
+
optional: true
|
|
1032
|
+
|
|
1033
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
1034
|
+
optional: true
|
|
1035
|
+
|
|
1036
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
1037
|
+
optional: true
|
|
1038
|
+
|
|
1039
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
1040
|
+
optional: true
|
|
1041
|
+
|
|
1042
|
+
'@esbuild/win32-x64@0.27.3':
|
|
1043
|
+
optional: true
|
|
1044
|
+
|
|
1045
|
+
'@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6))':
|
|
1046
|
+
dependencies:
|
|
1047
|
+
'@cfworker/json-schema': 4.1.1
|
|
1048
|
+
ansi-styles: 5.2.0
|
|
1049
|
+
camelcase: 6.3.0
|
|
1050
|
+
decamelize: 1.2.0
|
|
1051
|
+
js-tiktoken: 1.0.21
|
|
1052
|
+
langsmith: 0.5.4(openai@6.22.0(zod@4.3.6))
|
|
1053
|
+
mustache: 4.2.0
|
|
1054
|
+
p-queue: 6.6.2
|
|
1055
|
+
uuid: 10.0.0
|
|
1056
|
+
zod: 4.3.6
|
|
1057
|
+
transitivePeerDependencies:
|
|
1058
|
+
- '@opentelemetry/api'
|
|
1059
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
1060
|
+
- '@opentelemetry/sdk-trace-base'
|
|
1061
|
+
- openai
|
|
1062
|
+
|
|
1063
|
+
'@langchain/langgraph-checkpoint@1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))':
|
|
1064
|
+
dependencies:
|
|
1065
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1066
|
+
uuid: 10.0.0
|
|
1067
|
+
|
|
1068
|
+
'@langchain/langgraph-sdk@1.6.2(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))':
|
|
1069
|
+
dependencies:
|
|
1070
|
+
'@types/json-schema': 7.0.15
|
|
1071
|
+
p-queue: 9.1.0
|
|
1072
|
+
p-retry: 7.1.1
|
|
1073
|
+
uuid: 13.0.0
|
|
1074
|
+
optionalDependencies:
|
|
1075
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1076
|
+
|
|
1077
|
+
'@langchain/langgraph@1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)':
|
|
1078
|
+
dependencies:
|
|
1079
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1080
|
+
'@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
1081
|
+
'@langchain/langgraph-sdk': 1.6.2(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
1082
|
+
'@standard-schema/spec': 1.1.0
|
|
1083
|
+
uuid: 10.0.0
|
|
1084
|
+
zod: 4.3.6
|
|
1085
|
+
transitivePeerDependencies:
|
|
1086
|
+
- react
|
|
1087
|
+
- react-dom
|
|
1088
|
+
|
|
1089
|
+
'@langchain/openai@1.2.7(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))':
|
|
1090
|
+
dependencies:
|
|
1091
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1092
|
+
js-tiktoken: 1.0.21
|
|
1093
|
+
openai: 6.22.0(zod@4.3.6)
|
|
1094
|
+
zod: 4.3.6
|
|
1095
|
+
transitivePeerDependencies:
|
|
1096
|
+
- ws
|
|
1097
|
+
|
|
1098
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
1099
|
+
dependencies:
|
|
1100
|
+
'@nodelib/fs.stat': 2.0.5
|
|
1101
|
+
run-parallel: 1.2.0
|
|
1102
|
+
|
|
1103
|
+
'@nodelib/fs.stat@2.0.5': {}
|
|
1104
|
+
|
|
1105
|
+
'@nodelib/fs.walk@1.2.8':
|
|
1106
|
+
dependencies:
|
|
1107
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
1108
|
+
fastq: 1.20.1
|
|
1109
|
+
|
|
1110
|
+
'@standard-schema/spec@1.1.0': {}
|
|
1111
|
+
|
|
1112
|
+
'@types/json-schema@7.0.15': {}
|
|
1113
|
+
|
|
1114
|
+
'@types/node@22.19.11':
|
|
1115
|
+
dependencies:
|
|
1116
|
+
undici-types: 6.21.0
|
|
1117
|
+
|
|
1118
|
+
'@types/retry@0.12.2': {}
|
|
1119
|
+
|
|
1120
|
+
'@types/uuid@10.0.0': {}
|
|
1121
|
+
|
|
1122
|
+
ajv-formats@3.0.1(ajv@8.18.0):
|
|
1123
|
+
optionalDependencies:
|
|
1124
|
+
ajv: 8.18.0
|
|
1125
|
+
|
|
1126
|
+
ajv@8.18.0:
|
|
1127
|
+
dependencies:
|
|
1128
|
+
fast-deep-equal: 3.1.3
|
|
1129
|
+
fast-uri: 3.1.0
|
|
1130
|
+
json-schema-traverse: 1.0.0
|
|
1131
|
+
require-from-string: 2.0.2
|
|
1132
|
+
|
|
1133
|
+
ansi-styles@3.2.1:
|
|
1134
|
+
dependencies:
|
|
1135
|
+
color-convert: 1.9.3
|
|
1136
|
+
|
|
1137
|
+
ansi-styles@4.3.0:
|
|
1138
|
+
dependencies:
|
|
1139
|
+
color-convert: 2.0.1
|
|
1140
|
+
|
|
1141
|
+
ansi-styles@5.2.0: {}
|
|
1142
|
+
|
|
1143
|
+
ansicolors@0.2.1: {}
|
|
1144
|
+
|
|
1145
|
+
argparse@2.0.1: {}
|
|
1146
|
+
|
|
1147
|
+
asynckit@0.4.0: {}
|
|
1148
|
+
|
|
1149
|
+
axios@1.13.5:
|
|
1150
|
+
dependencies:
|
|
1151
|
+
follow-redirects: 1.15.11
|
|
1152
|
+
form-data: 4.0.5
|
|
1153
|
+
proxy-from-env: 1.1.0
|
|
1154
|
+
transitivePeerDependencies:
|
|
1155
|
+
- debug
|
|
1156
|
+
|
|
1157
|
+
base64-js@1.5.1: {}
|
|
1158
|
+
|
|
1159
|
+
boolbase@1.0.0: {}
|
|
1160
|
+
|
|
1161
|
+
braces@3.0.3:
|
|
1162
|
+
dependencies:
|
|
1163
|
+
fill-range: 7.1.1
|
|
1164
|
+
|
|
1165
|
+
call-bind-apply-helpers@1.0.2:
|
|
1166
|
+
dependencies:
|
|
1167
|
+
es-errors: 1.3.0
|
|
1168
|
+
function-bind: 1.1.2
|
|
1169
|
+
|
|
1170
|
+
camelcase@6.3.0: {}
|
|
1171
|
+
|
|
1172
|
+
cardinal@1.0.0:
|
|
1173
|
+
dependencies:
|
|
1174
|
+
ansicolors: 0.2.1
|
|
1175
|
+
redeyed: 1.0.1
|
|
1176
|
+
|
|
1177
|
+
chalk@4.1.2:
|
|
1178
|
+
dependencies:
|
|
1179
|
+
ansi-styles: 4.3.0
|
|
1180
|
+
supports-color: 7.2.0
|
|
1181
|
+
|
|
1182
|
+
cli-table@0.3.11:
|
|
1183
|
+
dependencies:
|
|
1184
|
+
colors: 1.0.3
|
|
1185
|
+
|
|
1186
|
+
cockatiel@3.2.1: {}
|
|
1187
|
+
|
|
1188
|
+
color-convert@1.9.3:
|
|
1189
|
+
dependencies:
|
|
1190
|
+
color-name: 1.1.3
|
|
1191
|
+
|
|
1192
|
+
color-convert@2.0.1:
|
|
1193
|
+
dependencies:
|
|
1194
|
+
color-name: 1.1.4
|
|
1195
|
+
|
|
1196
|
+
color-name@1.1.3: {}
|
|
1197
|
+
|
|
1198
|
+
color-name@1.1.4: {}
|
|
1199
|
+
|
|
1200
|
+
colors@1.0.3: {}
|
|
1201
|
+
|
|
1202
|
+
combined-stream@1.0.8:
|
|
1203
|
+
dependencies:
|
|
1204
|
+
delayed-stream: 1.0.0
|
|
1205
|
+
|
|
1206
|
+
console-table-printer@2.15.0:
|
|
1207
|
+
dependencies:
|
|
1208
|
+
simple-wcswidth: 1.1.2
|
|
1209
|
+
|
|
1210
|
+
css-select@5.2.2:
|
|
1211
|
+
dependencies:
|
|
1212
|
+
boolbase: 1.0.0
|
|
1213
|
+
css-what: 6.2.2
|
|
1214
|
+
domhandler: 5.0.3
|
|
1215
|
+
domutils: 3.2.2
|
|
1216
|
+
nth-check: 2.1.1
|
|
1217
|
+
|
|
1218
|
+
css-what@6.2.2: {}
|
|
1219
|
+
|
|
1220
|
+
decamelize@1.2.0: {}
|
|
1221
|
+
|
|
1222
|
+
deepagents@1.7.6(openai@6.22.0(zod@4.3.6)):
|
|
1223
|
+
dependencies:
|
|
1224
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1225
|
+
'@langchain/langgraph': 1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
1226
|
+
fast-glob: 3.3.3
|
|
1227
|
+
langchain: 1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6))
|
|
1228
|
+
micromatch: 4.0.8
|
|
1229
|
+
yaml: 2.8.2
|
|
1230
|
+
zod: 4.3.6
|
|
1231
|
+
transitivePeerDependencies:
|
|
1232
|
+
- '@opentelemetry/api'
|
|
1233
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
1234
|
+
- '@opentelemetry/sdk-trace-base'
|
|
1235
|
+
- openai
|
|
1236
|
+
- react
|
|
1237
|
+
- react-dom
|
|
1238
|
+
- zod-to-json-schema
|
|
1239
|
+
|
|
1240
|
+
delayed-stream@1.0.0: {}
|
|
1241
|
+
|
|
1242
|
+
dom-serializer@2.0.0:
|
|
1243
|
+
dependencies:
|
|
1244
|
+
domelementtype: 2.3.0
|
|
1245
|
+
domhandler: 5.0.3
|
|
1246
|
+
entities: 4.5.0
|
|
1247
|
+
|
|
1248
|
+
domelementtype@2.3.0: {}
|
|
1249
|
+
|
|
1250
|
+
domhandler@5.0.3:
|
|
1251
|
+
dependencies:
|
|
1252
|
+
domelementtype: 2.3.0
|
|
1253
|
+
|
|
1254
|
+
domutils@3.2.2:
|
|
1255
|
+
dependencies:
|
|
1256
|
+
dom-serializer: 2.0.0
|
|
1257
|
+
domelementtype: 2.3.0
|
|
1258
|
+
domhandler: 5.0.3
|
|
1259
|
+
|
|
1260
|
+
dunder-proto@1.0.1:
|
|
1261
|
+
dependencies:
|
|
1262
|
+
call-bind-apply-helpers: 1.0.2
|
|
1263
|
+
es-errors: 1.3.0
|
|
1264
|
+
gopd: 1.2.0
|
|
1265
|
+
|
|
1266
|
+
entities@4.5.0: {}
|
|
1267
|
+
|
|
1268
|
+
es-define-property@1.0.1: {}
|
|
1269
|
+
|
|
1270
|
+
es-errors@1.3.0: {}
|
|
1271
|
+
|
|
1272
|
+
es-object-atoms@1.1.1:
|
|
1273
|
+
dependencies:
|
|
1274
|
+
es-errors: 1.3.0
|
|
1275
|
+
|
|
1276
|
+
es-set-tostringtag@2.1.0:
|
|
1277
|
+
dependencies:
|
|
1278
|
+
es-errors: 1.3.0
|
|
1279
|
+
get-intrinsic: 1.3.0
|
|
1280
|
+
has-tostringtag: 1.0.2
|
|
1281
|
+
hasown: 2.0.2
|
|
1282
|
+
|
|
1283
|
+
esbuild@0.27.3:
|
|
1284
|
+
optionalDependencies:
|
|
1285
|
+
'@esbuild/aix-ppc64': 0.27.3
|
|
1286
|
+
'@esbuild/android-arm': 0.27.3
|
|
1287
|
+
'@esbuild/android-arm64': 0.27.3
|
|
1288
|
+
'@esbuild/android-x64': 0.27.3
|
|
1289
|
+
'@esbuild/darwin-arm64': 0.27.3
|
|
1290
|
+
'@esbuild/darwin-x64': 0.27.3
|
|
1291
|
+
'@esbuild/freebsd-arm64': 0.27.3
|
|
1292
|
+
'@esbuild/freebsd-x64': 0.27.3
|
|
1293
|
+
'@esbuild/linux-arm': 0.27.3
|
|
1294
|
+
'@esbuild/linux-arm64': 0.27.3
|
|
1295
|
+
'@esbuild/linux-ia32': 0.27.3
|
|
1296
|
+
'@esbuild/linux-loong64': 0.27.3
|
|
1297
|
+
'@esbuild/linux-mips64el': 0.27.3
|
|
1298
|
+
'@esbuild/linux-ppc64': 0.27.3
|
|
1299
|
+
'@esbuild/linux-riscv64': 0.27.3
|
|
1300
|
+
'@esbuild/linux-s390x': 0.27.3
|
|
1301
|
+
'@esbuild/linux-x64': 0.27.3
|
|
1302
|
+
'@esbuild/netbsd-arm64': 0.27.3
|
|
1303
|
+
'@esbuild/netbsd-x64': 0.27.3
|
|
1304
|
+
'@esbuild/openbsd-arm64': 0.27.3
|
|
1305
|
+
'@esbuild/openbsd-x64': 0.27.3
|
|
1306
|
+
'@esbuild/openharmony-arm64': 0.27.3
|
|
1307
|
+
'@esbuild/sunos-x64': 0.27.3
|
|
1308
|
+
'@esbuild/win32-arm64': 0.27.3
|
|
1309
|
+
'@esbuild/win32-ia32': 0.27.3
|
|
1310
|
+
'@esbuild/win32-x64': 0.27.3
|
|
1311
|
+
|
|
1312
|
+
esprima@3.0.0: {}
|
|
1313
|
+
|
|
1314
|
+
eventemitter3@4.0.7: {}
|
|
1315
|
+
|
|
1316
|
+
eventemitter3@5.0.4: {}
|
|
1317
|
+
|
|
1318
|
+
fast-deep-equal@3.1.3: {}
|
|
1319
|
+
|
|
1320
|
+
fast-glob@3.3.3:
|
|
1321
|
+
dependencies:
|
|
1322
|
+
'@nodelib/fs.stat': 2.0.5
|
|
1323
|
+
'@nodelib/fs.walk': 1.2.8
|
|
1324
|
+
glob-parent: 5.1.2
|
|
1325
|
+
merge2: 1.4.1
|
|
1326
|
+
micromatch: 4.0.8
|
|
1327
|
+
|
|
1328
|
+
fast-uri@3.1.0: {}
|
|
1329
|
+
|
|
1330
|
+
fastq@1.20.1:
|
|
1331
|
+
dependencies:
|
|
1332
|
+
reusify: 1.1.0
|
|
1333
|
+
|
|
1334
|
+
fill-range@7.1.1:
|
|
1335
|
+
dependencies:
|
|
1336
|
+
to-regex-range: 5.0.1
|
|
1337
|
+
|
|
1338
|
+
follow-redirects@1.15.11: {}
|
|
1339
|
+
|
|
1340
|
+
form-data@4.0.5:
|
|
1341
|
+
dependencies:
|
|
1342
|
+
asynckit: 0.4.0
|
|
1343
|
+
combined-stream: 1.0.8
|
|
1344
|
+
es-set-tostringtag: 2.1.0
|
|
1345
|
+
hasown: 2.0.2
|
|
1346
|
+
mime-types: 2.1.35
|
|
1347
|
+
|
|
1348
|
+
fsevents@2.3.3:
|
|
1349
|
+
optional: true
|
|
1350
|
+
|
|
1351
|
+
function-bind@1.1.2: {}
|
|
1352
|
+
|
|
1353
|
+
get-intrinsic@1.3.0:
|
|
1354
|
+
dependencies:
|
|
1355
|
+
call-bind-apply-helpers: 1.0.2
|
|
1356
|
+
es-define-property: 1.0.1
|
|
1357
|
+
es-errors: 1.3.0
|
|
1358
|
+
es-object-atoms: 1.1.1
|
|
1359
|
+
function-bind: 1.1.2
|
|
1360
|
+
get-proto: 1.0.1
|
|
1361
|
+
gopd: 1.2.0
|
|
1362
|
+
has-symbols: 1.1.0
|
|
1363
|
+
hasown: 2.0.2
|
|
1364
|
+
math-intrinsics: 1.1.0
|
|
1365
|
+
|
|
1366
|
+
get-proto@1.0.1:
|
|
1367
|
+
dependencies:
|
|
1368
|
+
dunder-proto: 1.0.1
|
|
1369
|
+
es-object-atoms: 1.1.1
|
|
1370
|
+
|
|
1371
|
+
get-tsconfig@4.13.6:
|
|
1372
|
+
dependencies:
|
|
1373
|
+
resolve-pkg-maps: 1.0.0
|
|
1374
|
+
|
|
1375
|
+
glob-parent@5.1.2:
|
|
1376
|
+
dependencies:
|
|
1377
|
+
is-glob: 4.0.3
|
|
1378
|
+
|
|
1379
|
+
gopd@1.2.0: {}
|
|
1380
|
+
|
|
1381
|
+
has-flag@4.0.0: {}
|
|
1382
|
+
|
|
1383
|
+
has-symbols@1.1.0: {}
|
|
1384
|
+
|
|
1385
|
+
has-tostringtag@1.0.2:
|
|
1386
|
+
dependencies:
|
|
1387
|
+
has-symbols: 1.1.0
|
|
1388
|
+
|
|
1389
|
+
hasown@2.0.2:
|
|
1390
|
+
dependencies:
|
|
1391
|
+
function-bind: 1.1.2
|
|
1392
|
+
|
|
1393
|
+
he@1.2.0: {}
|
|
1394
|
+
|
|
1395
|
+
is-extglob@2.1.1: {}
|
|
1396
|
+
|
|
1397
|
+
is-glob@4.0.3:
|
|
1398
|
+
dependencies:
|
|
1399
|
+
is-extglob: 2.1.1
|
|
1400
|
+
|
|
1401
|
+
is-network-error@1.3.0: {}
|
|
1402
|
+
|
|
1403
|
+
is-number@7.0.0: {}
|
|
1404
|
+
|
|
1405
|
+
jmespath@0.16.0: {}
|
|
1406
|
+
|
|
1407
|
+
js-tiktoken@1.0.21:
|
|
1408
|
+
dependencies:
|
|
1409
|
+
base64-js: 1.5.1
|
|
1410
|
+
|
|
1411
|
+
js-yaml@4.1.1:
|
|
1412
|
+
dependencies:
|
|
1413
|
+
argparse: 2.0.1
|
|
1414
|
+
|
|
1415
|
+
json-schema-traverse@1.0.0: {}
|
|
1416
|
+
|
|
1417
|
+
langchain@1.2.24(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(openai@6.22.0(zod@4.3.6)):
|
|
1418
|
+
dependencies:
|
|
1419
|
+
'@langchain/core': 1.1.24(openai@6.22.0(zod@4.3.6))
|
|
1420
|
+
'@langchain/langgraph': 1.1.4(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))(zod@4.3.6)
|
|
1421
|
+
'@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.24(openai@6.22.0(zod@4.3.6)))
|
|
1422
|
+
langsmith: 0.5.4(openai@6.22.0(zod@4.3.6))
|
|
1423
|
+
uuid: 10.0.0
|
|
1424
|
+
zod: 4.3.6
|
|
1425
|
+
transitivePeerDependencies:
|
|
1426
|
+
- '@opentelemetry/api'
|
|
1427
|
+
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
1428
|
+
- '@opentelemetry/sdk-trace-base'
|
|
1429
|
+
- openai
|
|
1430
|
+
- react
|
|
1431
|
+
- react-dom
|
|
1432
|
+
- zod-to-json-schema
|
|
1433
|
+
|
|
1434
|
+
langsmith@0.5.4(openai@6.22.0(zod@4.3.6)):
|
|
1435
|
+
dependencies:
|
|
1436
|
+
'@types/uuid': 10.0.0
|
|
1437
|
+
chalk: 4.1.2
|
|
1438
|
+
console-table-printer: 2.15.0
|
|
1439
|
+
p-queue: 6.6.2
|
|
1440
|
+
semver: 7.7.4
|
|
1441
|
+
uuid: 10.0.0
|
|
1442
|
+
optionalDependencies:
|
|
1443
|
+
openai: 6.22.0(zod@4.3.6)
|
|
1444
|
+
|
|
1445
|
+
linkify-it@5.0.0:
|
|
1446
|
+
dependencies:
|
|
1447
|
+
uc.micro: 2.1.0
|
|
1448
|
+
|
|
1449
|
+
lodash.merge@4.6.2: {}
|
|
1450
|
+
|
|
1451
|
+
markdown-it-terminal@0.4.0(markdown-it@14.1.1):
|
|
1452
|
+
dependencies:
|
|
1453
|
+
ansi-styles: 3.2.1
|
|
1454
|
+
cardinal: 1.0.0
|
|
1455
|
+
cli-table: 0.3.11
|
|
1456
|
+
lodash.merge: 4.6.2
|
|
1457
|
+
markdown-it: 14.1.1
|
|
1458
|
+
|
|
1459
|
+
markdown-it@14.1.1:
|
|
1460
|
+
dependencies:
|
|
1461
|
+
argparse: 2.0.1
|
|
1462
|
+
entities: 4.5.0
|
|
1463
|
+
linkify-it: 5.0.0
|
|
1464
|
+
mdurl: 2.0.0
|
|
1465
|
+
punycode.js: 2.3.1
|
|
1466
|
+
uc.micro: 2.1.0
|
|
1467
|
+
|
|
1468
|
+
math-intrinsics@1.1.0: {}
|
|
1469
|
+
|
|
1470
|
+
mdurl@2.0.0: {}
|
|
1471
|
+
|
|
1472
|
+
merge2@1.4.1: {}
|
|
1473
|
+
|
|
1474
|
+
micromatch@4.0.8:
|
|
1475
|
+
dependencies:
|
|
1476
|
+
braces: 3.0.3
|
|
1477
|
+
picomatch: 2.3.1
|
|
1478
|
+
|
|
1479
|
+
mime-db@1.52.0: {}
|
|
1480
|
+
|
|
1481
|
+
mime-types@2.1.35:
|
|
1482
|
+
dependencies:
|
|
1483
|
+
mime-db: 1.52.0
|
|
1484
|
+
|
|
1485
|
+
mustache@4.2.0: {}
|
|
1486
|
+
|
|
1487
|
+
node-html-parser@6.1.13:
|
|
1488
|
+
dependencies:
|
|
1489
|
+
css-select: 5.2.2
|
|
1490
|
+
he: 1.2.0
|
|
1491
|
+
|
|
1492
|
+
nth-check@2.1.1:
|
|
1493
|
+
dependencies:
|
|
1494
|
+
boolbase: 1.0.0
|
|
1495
|
+
|
|
1496
|
+
openai@6.22.0(zod@4.3.6):
|
|
1497
|
+
optionalDependencies:
|
|
1498
|
+
zod: 4.3.6
|
|
1499
|
+
|
|
1500
|
+
p-finally@1.0.0: {}
|
|
1501
|
+
|
|
1502
|
+
p-queue@6.6.2:
|
|
1503
|
+
dependencies:
|
|
1504
|
+
eventemitter3: 4.0.7
|
|
1505
|
+
p-timeout: 3.2.0
|
|
1506
|
+
|
|
1507
|
+
p-queue@9.1.0:
|
|
1508
|
+
dependencies:
|
|
1509
|
+
eventemitter3: 5.0.4
|
|
1510
|
+
p-timeout: 7.0.1
|
|
1511
|
+
|
|
1512
|
+
p-retry@6.2.1:
|
|
1513
|
+
dependencies:
|
|
1514
|
+
'@types/retry': 0.12.2
|
|
1515
|
+
is-network-error: 1.3.0
|
|
1516
|
+
retry: 0.13.1
|
|
1517
|
+
|
|
1518
|
+
p-retry@7.1.1:
|
|
1519
|
+
dependencies:
|
|
1520
|
+
is-network-error: 1.3.0
|
|
1521
|
+
|
|
1522
|
+
p-timeout@3.2.0:
|
|
1523
|
+
dependencies:
|
|
1524
|
+
p-finally: 1.0.0
|
|
1525
|
+
|
|
1526
|
+
p-timeout@6.1.4: {}
|
|
1527
|
+
|
|
1528
|
+
p-timeout@7.0.1: {}
|
|
1529
|
+
|
|
1530
|
+
picomatch@2.3.1: {}
|
|
1531
|
+
|
|
1532
|
+
proxy-from-env@1.1.0: {}
|
|
1533
|
+
|
|
1534
|
+
punycode.js@2.3.1: {}
|
|
1535
|
+
|
|
1536
|
+
queue-microtask@1.2.3: {}
|
|
1537
|
+
|
|
1538
|
+
redeyed@1.0.1:
|
|
1539
|
+
dependencies:
|
|
1540
|
+
esprima: 3.0.0
|
|
1541
|
+
|
|
1542
|
+
require-from-string@2.0.2: {}
|
|
1543
|
+
|
|
1544
|
+
resolve-pkg-maps@1.0.0: {}
|
|
1545
|
+
|
|
1546
|
+
retry@0.13.1: {}
|
|
1547
|
+
|
|
1548
|
+
reusify@1.1.0: {}
|
|
1549
|
+
|
|
1550
|
+
run-parallel@1.2.0:
|
|
1551
|
+
dependencies:
|
|
1552
|
+
queue-microtask: 1.2.3
|
|
1553
|
+
|
|
1554
|
+
semver@7.7.4: {}
|
|
1555
|
+
|
|
1556
|
+
simple-wcswidth@1.1.2: {}
|
|
1557
|
+
|
|
1558
|
+
supports-color@7.2.0:
|
|
1559
|
+
dependencies:
|
|
1560
|
+
has-flag: 4.0.0
|
|
1561
|
+
|
|
1562
|
+
to-regex-range@5.0.1:
|
|
1563
|
+
dependencies:
|
|
1564
|
+
is-number: 7.0.0
|
|
1565
|
+
|
|
1566
|
+
tsx@4.21.0:
|
|
1567
|
+
dependencies:
|
|
1568
|
+
esbuild: 0.27.3
|
|
1569
|
+
get-tsconfig: 4.13.6
|
|
1570
|
+
optionalDependencies:
|
|
1571
|
+
fsevents: 2.3.3
|
|
1572
|
+
|
|
1573
|
+
typescript@5.7.3: {}
|
|
1574
|
+
|
|
1575
|
+
uc.micro@2.1.0: {}
|
|
1576
|
+
|
|
1577
|
+
undici-types@6.21.0: {}
|
|
1578
|
+
|
|
1579
|
+
uuid@10.0.0: {}
|
|
1580
|
+
|
|
1581
|
+
uuid@11.1.0: {}
|
|
1582
|
+
|
|
1583
|
+
uuid@13.0.0: {}
|
|
1584
|
+
|
|
1585
|
+
yaml@2.8.2: {}
|
|
1586
|
+
|
|
1587
|
+
zod@3.25.76: {}
|
|
1588
|
+
|
|
1589
|
+
zod@4.3.6: {}
|