@cuylabs/agent-core 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-CMYN2RCB.js → chunk-33UIM3QS.js} +13 -7
- package/dist/{chunk-SPILYYDF.js → chunk-BERMUFZA.js} +22 -5
- package/dist/{chunk-TOTDGK3P.js → chunk-CSR75JVC.js} +4 -5
- package/dist/{chunk-ICZ66572.js → chunk-CZ5XOVDV.js} +40 -9
- package/dist/{chunk-2O4MCSQS.js → chunk-FYC33XFI.js} +31 -10
- package/dist/{chunk-WBPOZ7CL.js → chunk-JNN3RUIL.js} +86 -36
- package/dist/{chunk-SSFBF3US.js → chunk-JPBFAQNS.js} +7 -12
- package/dist/{chunk-5FMSGQVX.js → chunk-JZRLCTSD.js} +8 -2
- package/dist/{chunk-V4RFNEET.js → chunk-MLTJHUVG.js} +34 -16
- package/dist/{chunk-QAL3OMI3.js → chunk-MO3N6M32.js} +4 -1
- package/dist/{chunk-5NVVNXPQ.js → chunk-QEE5CBPM.js} +5 -2
- package/dist/{chunk-MXAP4UG6.js → chunk-QJV5XPPS.js} +238 -86
- package/dist/{chunk-T4UIX5D7.js → chunk-S6AKEPAX.js} +9 -3
- package/dist/{chunk-N3VX7FEE.js → chunk-STDJYXYK.js} +1 -4
- package/dist/{chunk-6HZBHFOL.js → chunk-TPZ37IWI.js} +10 -1
- package/dist/{chunk-NDZWXCBZ.js → chunk-TZ4VA4VX.js} +33 -11
- package/dist/{chunk-GFTW23FV.js → chunk-UECLINZM.js} +4 -2
- package/dist/chunk-US7S4FYW.js +610 -0
- package/dist/{chunk-RN6WZEUF.js → chunk-WI5JFEAI.js} +71 -36
- package/dist/dispatch/index.d.ts +5 -3
- package/dist/dispatch/index.js +3 -3
- package/dist/execution/index.d.ts +6 -4
- package/dist/execution/index.js +7 -7
- package/dist/index.d.ts +8 -5
- package/dist/index.js +117 -114
- package/dist/inference/errors/index.js +1 -1
- package/dist/inference/index.d.ts +6 -4
- package/dist/inference/index.js +6 -6
- package/dist/{instance-DzPiv6EK.d.ts → instance-CP24g3Le.d.ts} +1 -1
- package/dist/logger/index.js +1 -1
- package/dist/mcp/index.d.ts +116 -3
- package/dist/mcp/index.js +6 -2
- package/dist/middleware/index.d.ts +5 -3
- package/dist/middleware/index.js +3 -3
- package/dist/{model-messages-CJfwfzGe.d.ts → model-messages-B_MCHyiX.d.ts} +1 -1
- package/dist/models/index.js +2 -2
- package/dist/models/reasoning/index.js +2 -2
- package/dist/plugin/index.d.ts +4 -2
- package/dist/plugin/index.js +1 -1
- package/dist/profiles/index.d.ts +4 -2
- package/dist/profiles/index.js +1 -1
- package/dist/prompt/index.d.ts +5 -3
- package/dist/prompt/index.js +2 -2
- package/dist/safety/index.d.ts +5 -3
- package/dist/safety/index.js +1 -1
- package/dist/skill/index.d.ts +5 -3
- package/dist/skill/index.js +2 -2
- package/dist/storage/index.d.ts +5 -3
- package/dist/storage/index.js +1 -1
- package/dist/subagents/index.d.ts +4 -2
- package/dist/subagents/index.js +4 -4
- package/dist/team/index.d.ts +5 -3
- package/dist/team/index.js +1 -1
- package/dist/tool/index.d.ts +5 -3
- package/dist/tool/index.js +2 -2
- package/dist/{types-Bj_J8u_W.d.ts → types-DMjoFKKv.d.ts} +55 -7
- package/package.json +1 -6
- package/dist/chunk-ROTGCYDW.js +0 -221
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "./chunk-I6PKJ7XQ.js";
|
|
8
8
|
import {
|
|
9
9
|
silentLogger
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-S6AKEPAX.js";
|
|
11
11
|
|
|
12
12
|
// src/models/resolver.ts
|
|
13
13
|
function parseKey(input) {
|
|
@@ -43,7 +43,8 @@ function buildOptions(settings) {
|
|
|
43
43
|
const opts = { ...settings.extra ?? {} };
|
|
44
44
|
if (settings.apiKey) opts.apiKey = settings.apiKey;
|
|
45
45
|
if (settings.baseUrl) opts.baseURL = settings.baseUrl;
|
|
46
|
-
if (settings.headers && Object.keys(settings.headers).length > 0)
|
|
46
|
+
if (settings.headers && Object.keys(settings.headers).length > 0)
|
|
47
|
+
opts.headers = settings.headers;
|
|
47
48
|
return opts;
|
|
48
49
|
}
|
|
49
50
|
async function createFactory(adapter, settings) {
|
|
@@ -60,20 +61,24 @@ async function createFactory(adapter, settings) {
|
|
|
60
61
|
return (modelId) => provider.languageModel(modelId);
|
|
61
62
|
}
|
|
62
63
|
case "anthropic": {
|
|
63
|
-
const { createAnthropic } = await import("@ai-sdk/anthropic").catch(
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
const { createAnthropic } = await import("@ai-sdk/anthropic").catch(
|
|
65
|
+
() => {
|
|
66
|
+
throw new Error(
|
|
67
|
+
`Provider "@ai-sdk/anthropic" is required for the "anthropic" adapter. Install it with: pnpm add @ai-sdk/anthropic`
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
);
|
|
68
71
|
const provider = createAnthropic(opts);
|
|
69
72
|
return (modelId) => provider.languageModel(modelId);
|
|
70
73
|
}
|
|
71
74
|
case "google": {
|
|
72
|
-
const { createGoogleGenerativeAI } = await import("@ai-sdk/google").catch(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
const { createGoogleGenerativeAI } = await import("@ai-sdk/google").catch(
|
|
76
|
+
() => {
|
|
77
|
+
throw new Error(
|
|
78
|
+
`Provider "@ai-sdk/google" is required for the "google" adapter. Install it with: pnpm add @ai-sdk/google`
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
);
|
|
77
82
|
const provider = createGoogleGenerativeAI(opts);
|
|
78
83
|
return (modelId) => asModel(provider.languageModel(modelId));
|
|
79
84
|
}
|
|
@@ -119,11 +124,13 @@ async function createFactory(adapter, settings) {
|
|
|
119
124
|
return (modelId) => provider.languageModel(modelId);
|
|
120
125
|
}
|
|
121
126
|
case "vertex": {
|
|
122
|
-
const { createVertex } = await import("@ai-sdk/google-vertex").catch(
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
+
const { createVertex } = await import("@ai-sdk/google-vertex").catch(
|
|
128
|
+
() => {
|
|
129
|
+
throw new Error(
|
|
130
|
+
`Provider "@ai-sdk/google-vertex" is required for the "vertex" adapter. Install it with: pnpm add @ai-sdk/google-vertex`
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
);
|
|
127
134
|
const provider = createVertex(opts);
|
|
128
135
|
return (modelId) => asModel(provider.languageModel(modelId));
|
|
129
136
|
}
|
|
@@ -556,19 +563,25 @@ var RemoteCapabilityFetcher = class {
|
|
|
556
563
|
throw new Error("Network appears offline");
|
|
557
564
|
}
|
|
558
565
|
try {
|
|
559
|
-
const response = await fetchWithTimeout(
|
|
566
|
+
const response = await fetchWithTimeout(
|
|
567
|
+
`${this.apiUrl}/api.json`,
|
|
568
|
+
this.timeoutMs
|
|
569
|
+
);
|
|
560
570
|
const data = await response.json();
|
|
561
571
|
const entries = [];
|
|
562
572
|
if (data && typeof data === "object") {
|
|
563
573
|
for (const [providerId, providerData] of Object.entries(data)) {
|
|
564
|
-
if (typeof providerData !== "object" || providerData === null)
|
|
574
|
+
if (typeof providerData !== "object" || providerData === null)
|
|
575
|
+
continue;
|
|
565
576
|
const models = providerData.models;
|
|
566
577
|
if (!Array.isArray(models)) continue;
|
|
567
578
|
for (const model of models) {
|
|
568
|
-
entries.push(
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
579
|
+
entries.push(
|
|
580
|
+
transformModelsDevEntry({
|
|
581
|
+
...model,
|
|
582
|
+
provider: providerId
|
|
583
|
+
})
|
|
584
|
+
);
|
|
572
585
|
}
|
|
573
586
|
}
|
|
574
587
|
}
|
|
@@ -578,7 +591,9 @@ var RemoteCapabilityFetcher = class {
|
|
|
578
591
|
recordNetworkSuccess();
|
|
579
592
|
return entries;
|
|
580
593
|
} catch (error) {
|
|
581
|
-
recordNetworkFailure(
|
|
594
|
+
recordNetworkFailure(
|
|
595
|
+
error instanceof Error ? error.message : String(error)
|
|
596
|
+
);
|
|
582
597
|
throw error;
|
|
583
598
|
}
|
|
584
599
|
}
|
|
@@ -712,7 +727,11 @@ var ModelCapabilityResolver = class {
|
|
|
712
727
|
await this.initialize();
|
|
713
728
|
const modelId = extractModelId(model);
|
|
714
729
|
const provider = extractProvider(model);
|
|
715
|
-
const overrideLookup = findCapabilityOverride(
|
|
730
|
+
const overrideLookup = findCapabilityOverride(
|
|
731
|
+
this.options.modelOverrides,
|
|
732
|
+
modelId,
|
|
733
|
+
provider
|
|
734
|
+
);
|
|
716
735
|
let bestResult;
|
|
717
736
|
for (const source of this.sources) {
|
|
718
737
|
try {
|
|
@@ -735,7 +754,10 @@ var ModelCapabilityResolver = class {
|
|
|
735
754
|
if (!bestResult?.entry) {
|
|
736
755
|
throw new Error(`Failed to resolve capabilities for model: ${modelId}`);
|
|
737
756
|
}
|
|
738
|
-
const entry = applyCapabilityOverride(
|
|
757
|
+
const entry = applyCapabilityOverride(
|
|
758
|
+
bestResult.entry,
|
|
759
|
+
overrideLookup.override
|
|
760
|
+
);
|
|
739
761
|
return {
|
|
740
762
|
entry,
|
|
741
763
|
source: bestResult.source,
|
|
@@ -858,8 +880,20 @@ function configureResolver(options) {
|
|
|
858
880
|
}
|
|
859
881
|
|
|
860
882
|
// src/models/reasoning/types.ts
|
|
861
|
-
var STANDARD_LEVELS = [
|
|
862
|
-
|
|
883
|
+
var STANDARD_LEVELS = [
|
|
884
|
+
"off",
|
|
885
|
+
"low",
|
|
886
|
+
"medium",
|
|
887
|
+
"high"
|
|
888
|
+
];
|
|
889
|
+
var EXTENDED_LEVELS = [
|
|
890
|
+
"off",
|
|
891
|
+
"minimal",
|
|
892
|
+
"low",
|
|
893
|
+
"medium",
|
|
894
|
+
"high",
|
|
895
|
+
"xhigh"
|
|
896
|
+
];
|
|
863
897
|
var FIXED_LEVELS = ["medium"];
|
|
864
898
|
function shouldIncludeReasoningSummary() {
|
|
865
899
|
if (typeof process !== "undefined" && process.env) {
|
|
@@ -969,13 +1003,13 @@ var PROVIDER_KEY_MAP = {
|
|
|
969
1003
|
"openai.responses": "openai",
|
|
970
1004
|
"anthropic.messages": "anthropic",
|
|
971
1005
|
"google.generative-ai": "google",
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
1006
|
+
bedrock: "bedrock",
|
|
1007
|
+
azure: "azure",
|
|
1008
|
+
xai: "xai",
|
|
1009
|
+
deepinfra: "deepinfra",
|
|
1010
|
+
togetherai: "togetherai",
|
|
1011
|
+
groq: "groq",
|
|
1012
|
+
mistral: "mistral"
|
|
979
1013
|
};
|
|
980
1014
|
function getProviderOptionsKey(provider) {
|
|
981
1015
|
return PROVIDER_KEY_MAP[provider] || provider.split(".")[0] || "unknown";
|
|
@@ -1100,7 +1134,8 @@ function getReasoningConfigSync(model) {
|
|
|
1100
1134
|
if (isGroq) return buildGroqOptions(level);
|
|
1101
1135
|
if (isOpenRouter) return buildOpenRouterOptions(level);
|
|
1102
1136
|
const defaultOpts = { reasoningEffort: level };
|
|
1103
|
-
if (shouldIncludeReasoningSummary())
|
|
1137
|
+
if (shouldIncludeReasoningSummary())
|
|
1138
|
+
defaultOpts.reasoningSummary = "auto";
|
|
1104
1139
|
return defaultOpts;
|
|
1105
1140
|
}
|
|
1106
1141
|
};
|
package/dist/dispatch/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { br as LocalDispatchRuntimeOptions, aU as DispatchRuntime, T as Tool, cY as TaskExecutorInput, cX as TaskExecutor, aR as DispatchRecord, aY as DispatchTargetInspection, aX as DispatchTarget, dd as TeamTask, bw as MemberRuntime, a_ as DispatchTargetStartResult, a$ as DispatchTargetSummary, b7 as ExternalTaskControl } from '../instance-
|
|
2
|
-
export { aI as DEFAULT_DISPATCH_TOOL_IDS, aJ as DEFAULT_LOCAL_DISPATCH_CONCURRENCY, aK as DEFAULT_LOCAL_DISPATCH_DEPTH, aL as DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX, aO as DISPATCH_STATES, aP as DispatchCheckOptions, aQ as DispatchListOptions, aS as DispatchResult, aT as DispatchRole, aV as DispatchStartInput, aW as DispatchState, aZ as DispatchTargetStartInput, b0 as DispatchUsage } from '../instance-
|
|
1
|
+
import { br as LocalDispatchRuntimeOptions, aU as DispatchRuntime, T as Tool, cY as TaskExecutorInput, cX as TaskExecutor, aR as DispatchRecord, aY as DispatchTargetInspection, aX as DispatchTarget, dd as TeamTask, bw as MemberRuntime, a_ as DispatchTargetStartResult, a$ as DispatchTargetSummary, b7 as ExternalTaskControl } from '../instance-CP24g3Le.js';
|
|
2
|
+
export { aI as DEFAULT_DISPATCH_TOOL_IDS, aJ as DEFAULT_LOCAL_DISPATCH_CONCURRENCY, aK as DEFAULT_LOCAL_DISPATCH_DEPTH, aL as DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX, aO as DISPATCH_STATES, aP as DispatchCheckOptions, aQ as DispatchListOptions, aS as DispatchResult, aT as DispatchRole, aV as DispatchStartInput, aW as DispatchState, aZ as DispatchTargetStartInput, b0 as DispatchUsage } from '../instance-CP24g3Le.js';
|
|
3
3
|
import '../types-C_LCeYNg.js';
|
|
4
4
|
import 'ai';
|
|
5
5
|
import '../types-RSCv7nQ4.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
import '../types-CQaXbRsS.js';
|
|
8
|
-
import '../types-
|
|
8
|
+
import '../types-DMjoFKKv.js';
|
|
9
|
+
import '@modelcontextprotocol/sdk/client/auth.js';
|
|
10
|
+
import '@modelcontextprotocol/sdk/types.js';
|
|
9
11
|
import '@ai-sdk/provider-utils';
|
|
10
12
|
import '../sandbox/index.js';
|
|
11
13
|
import '../llm-error-D93FNNLY.js';
|
package/dist/dispatch/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
createRuntimeDispatchTargets,
|
|
7
7
|
ensureNonEmpty,
|
|
8
8
|
mergeInspection
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-JZRLCTSD.js";
|
|
10
10
|
import {
|
|
11
11
|
DEFAULT_DISPATCH_TOOL_IDS,
|
|
12
12
|
DEFAULT_LOCAL_DISPATCH_CONCURRENCY,
|
|
@@ -15,10 +15,10 @@ import {
|
|
|
15
15
|
DISPATCH_STATES,
|
|
16
16
|
createDispatchTools,
|
|
17
17
|
createLocalDispatchRuntime
|
|
18
|
-
} from "../chunk-
|
|
18
|
+
} from "../chunk-JPBFAQNS.js";
|
|
19
19
|
import "../chunk-SZ2XBPTW.js";
|
|
20
20
|
import "../chunk-Q742PSH3.js";
|
|
21
|
-
import "../chunk-
|
|
21
|
+
import "../chunk-CZ5XOVDV.js";
|
|
22
22
|
export {
|
|
23
23
|
DEFAULT_DISPATCH_TOOL_IDS,
|
|
24
24
|
DEFAULT_LOCAL_DISPATCH_CONCURRENCY,
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { e as AnyInferenceResult, cB as StepProcessingOptions, cC as StepProcessingOutput, a6 as AgentTurnStepCommitSnapshot, aF as CreateAgentTurnStepCommitBatchOptions, _ as AgentTurnCommitBatch, b$ as PrepareModelStepOptions, c0 as PreparedAgentModelStep, cb as RunModelStepOptions, A as AgentEvent, cc as RunToolBatchOptions, cd as RunToolBatchResult, av as CommitOutputOptions, aw as CommitStepOptions, dg as TokenUsage, v as ScopeSnapshot, a4 as AgentTurnState, dn as ToolMetadata, a8 as AgentTurnStepCommitToolResult, a7 as AgentTurnStepCommitToolCall, M as Message, dv as UserMessage, ar as AssistantMessage, dm as ToolMessage, cM as SystemMessage } from '../instance-
|
|
2
|
-
export { Q as AgentTurnActiveToolCall, X as AgentTurnBoundaryMetadata, Y as AgentTurnBoundarySnapshot, Z as AgentTurnCommitApplier, $ as AgentTurnCommitOptions, a0 as AgentTurnEngine, a1 as AgentTurnEngineOptions, a2 as AgentTurnPhase, a3 as AgentTurnResolvedToolCall, a5 as AgentTurnStateAdvanceOptions, a9 as AgentTurnStepRuntimeConfig, aE as CreateAgentTurnStateOptions, dy as advanceAgentTurnState, dC as createAgentTurnEngine, dD as createAgentTurnState, dK as failAgentTurnState } from '../instance-
|
|
1
|
+
import { e as AnyInferenceResult, cB as StepProcessingOptions, cC as StepProcessingOutput, a6 as AgentTurnStepCommitSnapshot, aF as CreateAgentTurnStepCommitBatchOptions, _ as AgentTurnCommitBatch, b$ as PrepareModelStepOptions, c0 as PreparedAgentModelStep, cb as RunModelStepOptions, A as AgentEvent, cc as RunToolBatchOptions, cd as RunToolBatchResult, av as CommitOutputOptions, aw as CommitStepOptions, dg as TokenUsage, v as ScopeSnapshot, a4 as AgentTurnState, dn as ToolMetadata, a8 as AgentTurnStepCommitToolResult, a7 as AgentTurnStepCommitToolCall, M as Message, dv as UserMessage, ar as AssistantMessage, dm as ToolMessage, cM as SystemMessage } from '../instance-CP24g3Le.js';
|
|
2
|
+
export { Q as AgentTurnActiveToolCall, X as AgentTurnBoundaryMetadata, Y as AgentTurnBoundarySnapshot, Z as AgentTurnCommitApplier, $ as AgentTurnCommitOptions, a0 as AgentTurnEngine, a1 as AgentTurnEngineOptions, a2 as AgentTurnPhase, a3 as AgentTurnResolvedToolCall, a5 as AgentTurnStateAdvanceOptions, a9 as AgentTurnStepRuntimeConfig, aE as CreateAgentTurnStateOptions, dy as advanceAgentTurnState, dC as createAgentTurnEngine, dD as createAgentTurnState, dK as failAgentTurnState } from '../instance-CP24g3Le.js';
|
|
3
3
|
import { L as Logger } from '../types-RSCv7nQ4.js';
|
|
4
|
-
export { c as convertAgentMessagesToModelMessages } from '../model-messages-
|
|
4
|
+
export { c as convertAgentMessagesToModelMessages } from '../model-messages-B_MCHyiX.js';
|
|
5
5
|
import '../types-C_LCeYNg.js';
|
|
6
6
|
import 'ai';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import '../types-CQaXbRsS.js';
|
|
9
|
-
import '../types-
|
|
9
|
+
import '../types-DMjoFKKv.js';
|
|
10
|
+
import '@modelcontextprotocol/sdk/client/auth.js';
|
|
11
|
+
import '@modelcontextprotocol/sdk/types.js';
|
|
10
12
|
import '@ai-sdk/provider-utils';
|
|
11
13
|
import '../sandbox/index.js';
|
|
12
14
|
import '../llm-error-D93FNNLY.js';
|
package/dist/execution/index.js
CHANGED
|
@@ -31,18 +31,18 @@ import {
|
|
|
31
31
|
runToolBatch,
|
|
32
32
|
snapshotAgentWorkflowMessage,
|
|
33
33
|
snapshotAgentWorkflowMessages
|
|
34
|
-
} from "../chunk-
|
|
34
|
+
} from "../chunk-JNN3RUIL.js";
|
|
35
35
|
import {
|
|
36
36
|
convertAgentMessagesToModelMessages
|
|
37
|
-
} from "../chunk-
|
|
38
|
-
import "../chunk-
|
|
39
|
-
import "../chunk-
|
|
40
|
-
import "../chunk-
|
|
37
|
+
} from "../chunk-33UIM3QS.js";
|
|
38
|
+
import "../chunk-QEE5CBPM.js";
|
|
39
|
+
import "../chunk-STDJYXYK.js";
|
|
40
|
+
import "../chunk-WI5JFEAI.js";
|
|
41
41
|
import "../chunk-CJI7PVS2.js";
|
|
42
42
|
import "../chunk-I6PKJ7XQ.js";
|
|
43
|
-
import "../chunk-
|
|
43
|
+
import "../chunk-MLTJHUVG.js";
|
|
44
44
|
import "../chunk-FII65CN7.js";
|
|
45
|
-
import "../chunk-
|
|
45
|
+
import "../chunk-S6AKEPAX.js";
|
|
46
46
|
export {
|
|
47
47
|
AgentTurnEngine,
|
|
48
48
|
ContextOverflowError,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { H as HumanInputController, p as HumanInputConfig, T as Tool, M as Message, S as SessionManager, E as EffectiveAgentConfig, q as TurnChangeTracker, r as InterventionController, b as MiddlewareRunner, P as PromptBuilder, c as ToolExecutionMode, A as AgentEvent, t as StreamProvider, u as Scope, v as ScopeSnapshot, x as ScopeOptions, F as FileOperationMeta, y as AgentSignal, z as TypedHandler, U as Unsubscribe, W as WildcardHandler } from './instance-
|
|
2
|
-
export { B as Agent, C as AgentConfig, G as AgentDefaults, J as AgentDefaultsContext, K as AgentDefaultsProvider, L as AgentMiddleware, N as AgentModelHooks, O as AgentStatus, Q as AgentTurnActiveToolCall, V as AgentTurnBoundaryKind, X as AgentTurnBoundaryMetadata, Y as AgentTurnBoundarySnapshot, Z as AgentTurnCommitApplier, _ as AgentTurnCommitBatch, $ as AgentTurnCommitOptions, a0 as AgentTurnEngine, a1 as AgentTurnEngineOptions, a2 as AgentTurnPhase, a3 as AgentTurnResolvedToolCall, a4 as AgentTurnState, a5 as AgentTurnStateAdvanceOptions, a6 as AgentTurnStepCommitSnapshot, a7 as AgentTurnStepCommitToolCall, a8 as AgentTurnStepCommitToolResult, a9 as AgentTurnStepRuntimeConfig, e as AnyInferenceResult, aa as AppliedProfile, ab as ApprovalAction, ac as ApprovalAgentMiddleware, ad as ApprovalCascadeMode, ae as ApprovalCascadePolicy, af as ApprovalConfig, ag as ApprovalCorrection, ah as ApprovalDecision, ai as ApprovalEvaluation, aj as ApprovalEvent, ak as ApprovalHandler, al as ApprovalMiddlewareConfig, am as ApprovalRememberScope, an as ApprovalRequest, ao as ApprovalResolution, ap as ApprovalRule, aq as ApprovalRuleContext, ar as AssistantMessage, as as BlockedModelCall, at as BranchEntry, au as ChatLifecycleContext, av as CommitOutputOptions, aw as CommitStepOptions, ax as CompactionConfig, ay as CompactionEntry, az as CompatibleSchema, aA as ConfigChangeEntry, aB as CoordinatorNotification, aC as CoordinatorNotificationKind, aD as CoordinatorRoundEvent, aE as CreateAgentTurnStateOptions, aF as CreateAgentTurnStepCommitBatchOptions, aG as CreateSessionOptions, aH as DEFAULT_AGENT_NAME, aI as DEFAULT_DISPATCH_TOOL_IDS, aJ as DEFAULT_LOCAL_DISPATCH_CONCURRENCY, aK as DEFAULT_LOCAL_DISPATCH_DEPTH, aL as DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX, D as DEFAULT_MAX_OUTPUT_TOKENS, aM as DEFAULT_MAX_STEPS, D as DEFAULT_MAX_TOKENS, f as DEFAULT_RETRY_CONFIG, aN as DEFAULT_SYSTEM_PROMPT, aO as DISPATCH_STATES, aP as DispatchCheckOptions, aQ as DispatchListOptions, aR as DispatchRecord, aS as DispatchResult, aT as DispatchRole, aU as DispatchRuntime, aV as DispatchStartInput, aW as DispatchState, aX as DispatchTarget, aY as DispatchTargetInspection, aZ as DispatchTargetStartInput, a_ as DispatchTargetStartResult, a$ as DispatchTargetSummary, b0 as DispatchUsage, b1 as DoomLoopAction, b2 as DoomLoopHandler, b3 as DoomLoopRequest, b4 as EnhancedTools, b5 as EntryBase, b6 as EnvironmentInfo, b7 as ExternalTaskControl, b8 as FileEntry, b9 as GuidancePayload, ba as HumanInputEventContext, bb as HumanInputOption, bc as HumanInputRequest, bd as HumanInputRequestKind, be as HumanInputRequestListOptions, bf as HumanInputRequestRecord, bg as HumanInputRequestStatus, bh as HumanInputResponse, bi as HumanInputTimeoutError, bj as HumanInputToolArgs, bk as HumanInputUnavailableError, bl as IdleNotificationPayload, bm as InMemoryMailboxStore, bn as InMemoryTaskBoardStore, bo as InferSchemaOutput, g as InferenceCustomResult, h as InferenceStepInfo, I as InferenceStreamInput, i as InferenceStreamResult, bp as InputCheckResult, bq as InstructionFile, br as LocalDispatchRuntimeOptions, bs as Mailbox, bt as MailboxStore, bu as MailboxSubscriber, bv as MemberRegisteredEvent, bw as MemberRuntime, bx as MemberStats, by as MemberStatus, bz as MemberStatusChangedEvent, bA as MessageBase, bB as MessageEntry, bC as MessageError, bD as MessageInput, bE as MessageKind, bF as MessageListFilter, bG as MessagePayload, bH as MessageRole, bI as MessageSentEvent, bJ as MetadataEntry, d as ModelCallContext, bK as ModelCallInput, bL as ModelCallOutput, bM as ModelFamily, bN as NormalizedToolReplayPolicy, bO as NotificationPriority, bP as OnFollowUpQueued, bQ as OnInterventionApplied, bR as OtelMiddlewareConfig, bS as PRUNE_PROTECTED_TOOLS, bT as PendingIntervention, bU as PermissionForwardedEvent, bV as PermissionHandler, bW as PermissionRequestPayload, bX as PermissionResolvedEvent, bY as PermissionResponsePayload, bZ as PlanCreatedEvent, b_ as PlannedTask, b$ as PrepareModelStepOptions, c0 as PreparedAgentModelStep, c1 as PreparedExternalTask, c2 as Profile, c3 as PromptBuildContext, c4 as PromptConfig, c5 as PromptSection, c6 as QueueTaskInput, c7 as RemoteSkillEntry, c8 as RemoteSkillIndex, R as RetryConfig, j as RetryHandlerOptions, k as RetryState, c9 as RiskLevel, ca as RuleSource, cb as RunModelStepOptions, cc as RunToolBatchOptions, cd as RunToolBatchResult, ce as STORAGE_VERSION, cf as SerializedMessage, cg as Session, ch as SessionContext, ci as SessionEntry, cj as SessionHeader, ck as SessionInfo, cl as SessionStorage, cm as ShutdownRequestPayload, cn as ShutdownRequestedEvent, co as ShutdownResolvedEvent, cp as ShutdownResponsePayload, cq as SkillConfig, cr as SkillContent, cs as SkillDiscoveryError, ct as SkillDiscoveryResult, cu as SkillMetadata, cv as SkillRegistry, cw as SkillResource, cx as SkillResourceType, cy as SkillScope, cz as SkillSource, cA as SkillSourceType, cB as StepProcessingOptions, cC as StepProcessingOutput, cD as StepProcessingResult, cE as StreamChunk, cF as StreamInput, cG as StreamProviderConfig, cH as StreamProviderFactory, cI as StreamProviderInput, cJ as StreamProviderResult, cK as SynthesisCompleteEvent, cL as SynthesisResult, cM as SystemMessage, cN as TERMINAL_STATUSES, cO as TaskAbortedEvent, cP as TaskBoard, cQ as TaskBoardStore, cR as TaskCompletedEvent, cS as TaskCompletion, cT as TaskConflictError, cU as TaskCreateInput, cV as TaskCreatedEvent, cW as TaskDispatchMode, cX as TaskExecutor, cY as TaskExecutorInput, cZ as TaskFailedEvent, c_ as TaskListFilter, c$ as TaskResult, d0 as TaskStatus, d1 as TaskTransition, d2 as TaskTransitionEvent, d3 as TaskTransitionReason, d4 as TeamCoordinatorConfig, d5 as TeamEvent, d6 as TeamMember, d7 as TeamMessage, d8 as TeamNotificationEvent, d9 as TeamPlan, da as TeamSnapshot, db as TeamStartedEvent, dc as TeamStoppedEvent, dd as TeamTask, de as TelemetryConfig, df as TelemetryConfigResult, dg as TokenUsage, dh as ToolCallDecision, di as ToolCallOutput, dj as ToolCapabilities, dk as ToolContext, dl as ToolHostRequirements, dm as ToolMessage, dn as ToolMetadata, dp as ToolReplayMode, dq as ToolReplayPolicy, dr as ToolResult, ds as ToolSideEffectLevel, dt as TracingConfig, a as TurnTrackerContext, du as UndoResult, dv as UserMessage, dw as WorkerReportPayload, dx as accumulateUsage, dy as advanceAgentTurnState, dz as approvalMiddleware, dA as buildCoordinatorNotificationEvent, l as calculateDelay, dB as createAgent, dC as createAgentTurnEngine, dD as createAgentTurnState, dE as createApprovalHandler, dF as createHumanInputController, dG as createPromptBuilder, m as createRetryHandler, n as createRetryState, dH as createSkillRegistry, dI as createTurnTracker, dJ as emptySkillRegistry, dK as failAgentTurnState, dL as getRequiredToolHost, dM as isApprovalMiddleware, dN as isBlockedModelCall, dO as isHumanInputController, dP as requiresToolHost, dQ as resolveAgentDefaults, dR as resolveCapability, dS as sandboxDefaultsProvider, s as shouldRetry, w as withRetry } from './instance-
|
|
1
|
+
import { H as HumanInputController, p as HumanInputConfig, T as Tool, M as Message, S as SessionManager, E as EffectiveAgentConfig, q as TurnChangeTracker, r as InterventionController, b as MiddlewareRunner, P as PromptBuilder, c as ToolExecutionMode, A as AgentEvent, t as StreamProvider, u as Scope, v as ScopeSnapshot, x as ScopeOptions, F as FileOperationMeta, y as AgentSignal, z as TypedHandler, U as Unsubscribe, W as WildcardHandler } from './instance-CP24g3Le.js';
|
|
2
|
+
export { B as Agent, C as AgentConfig, G as AgentDefaults, J as AgentDefaultsContext, K as AgentDefaultsProvider, L as AgentMiddleware, N as AgentModelHooks, O as AgentStatus, Q as AgentTurnActiveToolCall, V as AgentTurnBoundaryKind, X as AgentTurnBoundaryMetadata, Y as AgentTurnBoundarySnapshot, Z as AgentTurnCommitApplier, _ as AgentTurnCommitBatch, $ as AgentTurnCommitOptions, a0 as AgentTurnEngine, a1 as AgentTurnEngineOptions, a2 as AgentTurnPhase, a3 as AgentTurnResolvedToolCall, a4 as AgentTurnState, a5 as AgentTurnStateAdvanceOptions, a6 as AgentTurnStepCommitSnapshot, a7 as AgentTurnStepCommitToolCall, a8 as AgentTurnStepCommitToolResult, a9 as AgentTurnStepRuntimeConfig, e as AnyInferenceResult, aa as AppliedProfile, ab as ApprovalAction, ac as ApprovalAgentMiddleware, ad as ApprovalCascadeMode, ae as ApprovalCascadePolicy, af as ApprovalConfig, ag as ApprovalCorrection, ah as ApprovalDecision, ai as ApprovalEvaluation, aj as ApprovalEvent, ak as ApprovalHandler, al as ApprovalMiddlewareConfig, am as ApprovalRememberScope, an as ApprovalRequest, ao as ApprovalResolution, ap as ApprovalRule, aq as ApprovalRuleContext, ar as AssistantMessage, as as BlockedModelCall, at as BranchEntry, au as ChatLifecycleContext, av as CommitOutputOptions, aw as CommitStepOptions, ax as CompactionConfig, ay as CompactionEntry, az as CompatibleSchema, aA as ConfigChangeEntry, aB as CoordinatorNotification, aC as CoordinatorNotificationKind, aD as CoordinatorRoundEvent, aE as CreateAgentTurnStateOptions, aF as CreateAgentTurnStepCommitBatchOptions, aG as CreateSessionOptions, aH as DEFAULT_AGENT_NAME, aI as DEFAULT_DISPATCH_TOOL_IDS, aJ as DEFAULT_LOCAL_DISPATCH_CONCURRENCY, aK as DEFAULT_LOCAL_DISPATCH_DEPTH, aL as DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX, D as DEFAULT_MAX_OUTPUT_TOKENS, aM as DEFAULT_MAX_STEPS, D as DEFAULT_MAX_TOKENS, f as DEFAULT_RETRY_CONFIG, aN as DEFAULT_SYSTEM_PROMPT, aO as DISPATCH_STATES, aP as DispatchCheckOptions, aQ as DispatchListOptions, aR as DispatchRecord, aS as DispatchResult, aT as DispatchRole, aU as DispatchRuntime, aV as DispatchStartInput, aW as DispatchState, aX as DispatchTarget, aY as DispatchTargetInspection, aZ as DispatchTargetStartInput, a_ as DispatchTargetStartResult, a$ as DispatchTargetSummary, b0 as DispatchUsage, b1 as DoomLoopAction, b2 as DoomLoopHandler, b3 as DoomLoopRequest, b4 as EnhancedTools, b5 as EntryBase, b6 as EnvironmentInfo, b7 as ExternalTaskControl, b8 as FileEntry, b9 as GuidancePayload, ba as HumanInputEventContext, bb as HumanInputOption, bc as HumanInputRequest, bd as HumanInputRequestKind, be as HumanInputRequestListOptions, bf as HumanInputRequestRecord, bg as HumanInputRequestStatus, bh as HumanInputResponse, bi as HumanInputTimeoutError, bj as HumanInputToolArgs, bk as HumanInputUnavailableError, bl as IdleNotificationPayload, bm as InMemoryMailboxStore, bn as InMemoryTaskBoardStore, bo as InferSchemaOutput, g as InferenceCustomResult, h as InferenceStepInfo, I as InferenceStreamInput, i as InferenceStreamResult, bp as InputCheckResult, bq as InstructionFile, br as LocalDispatchRuntimeOptions, bs as Mailbox, bt as MailboxStore, bu as MailboxSubscriber, bv as MemberRegisteredEvent, bw as MemberRuntime, bx as MemberStats, by as MemberStatus, bz as MemberStatusChangedEvent, bA as MessageBase, bB as MessageEntry, bC as MessageError, bD as MessageInput, bE as MessageKind, bF as MessageListFilter, bG as MessagePayload, bH as MessageRole, bI as MessageSentEvent, bJ as MetadataEntry, d as ModelCallContext, bK as ModelCallInput, bL as ModelCallOutput, bM as ModelFamily, bN as NormalizedToolReplayPolicy, bO as NotificationPriority, bP as OnFollowUpQueued, bQ as OnInterventionApplied, bR as OtelMiddlewareConfig, bS as PRUNE_PROTECTED_TOOLS, bT as PendingIntervention, bU as PermissionForwardedEvent, bV as PermissionHandler, bW as PermissionRequestPayload, bX as PermissionResolvedEvent, bY as PermissionResponsePayload, bZ as PlanCreatedEvent, b_ as PlannedTask, b$ as PrepareModelStepOptions, c0 as PreparedAgentModelStep, c1 as PreparedExternalTask, c2 as Profile, c3 as PromptBuildContext, c4 as PromptConfig, c5 as PromptSection, c6 as QueueTaskInput, c7 as RemoteSkillEntry, c8 as RemoteSkillIndex, R as RetryConfig, j as RetryHandlerOptions, k as RetryState, c9 as RiskLevel, ca as RuleSource, cb as RunModelStepOptions, cc as RunToolBatchOptions, cd as RunToolBatchResult, ce as STORAGE_VERSION, cf as SerializedMessage, cg as Session, ch as SessionContext, ci as SessionEntry, cj as SessionHeader, ck as SessionInfo, cl as SessionStorage, cm as ShutdownRequestPayload, cn as ShutdownRequestedEvent, co as ShutdownResolvedEvent, cp as ShutdownResponsePayload, cq as SkillConfig, cr as SkillContent, cs as SkillDiscoveryError, ct as SkillDiscoveryResult, cu as SkillMetadata, cv as SkillRegistry, cw as SkillResource, cx as SkillResourceType, cy as SkillScope, cz as SkillSource, cA as SkillSourceType, cB as StepProcessingOptions, cC as StepProcessingOutput, cD as StepProcessingResult, cE as StreamChunk, cF as StreamInput, cG as StreamProviderConfig, cH as StreamProviderFactory, cI as StreamProviderInput, cJ as StreamProviderResult, cK as SynthesisCompleteEvent, cL as SynthesisResult, cM as SystemMessage, cN as TERMINAL_STATUSES, cO as TaskAbortedEvent, cP as TaskBoard, cQ as TaskBoardStore, cR as TaskCompletedEvent, cS as TaskCompletion, cT as TaskConflictError, cU as TaskCreateInput, cV as TaskCreatedEvent, cW as TaskDispatchMode, cX as TaskExecutor, cY as TaskExecutorInput, cZ as TaskFailedEvent, c_ as TaskListFilter, c$ as TaskResult, d0 as TaskStatus, d1 as TaskTransition, d2 as TaskTransitionEvent, d3 as TaskTransitionReason, d4 as TeamCoordinatorConfig, d5 as TeamEvent, d6 as TeamMember, d7 as TeamMessage, d8 as TeamNotificationEvent, d9 as TeamPlan, da as TeamSnapshot, db as TeamStartedEvent, dc as TeamStoppedEvent, dd as TeamTask, de as TelemetryConfig, df as TelemetryConfigResult, dg as TokenUsage, dh as ToolCallDecision, di as ToolCallOutput, dj as ToolCapabilities, dk as ToolContext, dl as ToolHostRequirements, dm as ToolMessage, dn as ToolMetadata, dp as ToolReplayMode, dq as ToolReplayPolicy, dr as ToolResult, ds as ToolSideEffectLevel, dt as TracingConfig, a as TurnTrackerContext, du as UndoResult, dv as UserMessage, dw as WorkerReportPayload, dx as accumulateUsage, dy as advanceAgentTurnState, dz as approvalMiddleware, dA as buildCoordinatorNotificationEvent, l as calculateDelay, dB as createAgent, dC as createAgentTurnEngine, dD as createAgentTurnState, dE as createApprovalHandler, dF as createHumanInputController, dG as createPromptBuilder, m as createRetryHandler, n as createRetryState, dH as createSkillRegistry, dI as createTurnTracker, dJ as emptySkillRegistry, dK as failAgentTurnState, dL as getRequiredToolHost, dM as isApprovalMiddleware, dN as isBlockedModelCall, dO as isHumanInputController, dP as requiresToolHost, dQ as resolveAgentDefaults, dR as resolveCapability, dS as sandboxDefaultsProvider, s as shouldRetry, w as withRetry } from './instance-CP24g3Le.js';
|
|
3
3
|
import { LanguageModel, ModelMessage, Tool as Tool$1, TelemetrySettings } from 'ai';
|
|
4
4
|
import { T as ToolHost } from './types-C_LCeYNg.js';
|
|
5
5
|
export { D as DirEntry, E as ExecOptions, a as ExecResult, F as FileStat } from './types-C_LCeYNg.js';
|
|
@@ -11,10 +11,10 @@ export { ExecuteAgentToolCallOptions, ExecuteAgentToolCallResult, MAX_BYTES, MAX
|
|
|
11
11
|
export { ToolHostProvider, ToolHostProviderSummary, ToolHostRegistry, defaultToolHostRegistry, localHost } from './tool/host/index.js';
|
|
12
12
|
export { AdapterSettings, CacheCapabilitySource, CapabilityCache, CapabilityOverrides, Directory, EngineSpec, ModelCapabilityResolver, ModelSpec, NetworkStatus, PatternCapabilitySource, RemoteCapabilityFetcher, RemoteCapabilitySource, ResolutionResult, Resolver, applyCapabilityOverride, configureResolver, createResolver, extractModelId, extractProvider, findCapabilityOverride, getDefaultResolver, getModelId, getNetworkStatus, getProviderCompatibility, getProviderId, inferContextWindow, inferProvider, likelySupportsReasoning } from './models/index.js';
|
|
13
13
|
export { C as CapabilitySource, D as DEFAULT_RESOLVER_OPTIONS, I as InputModality, M as ModelCapabilities, a as ModelEntry, O as OutputModality, P as ProviderCompatibility, R as ResolverOptions, S as SourcePriority, b as SourceResult, c as buildAnthropicOptions, d as buildBedrockOptions, e as buildGoogleOptions, f as buildGroqOptions, g as buildOpenAIOptions, h as buildOpenRouterOptions, i as buildReasoningOptions, j as buildReasoningOptionsSync, k as buildXAIOptions, l as getProviderOptionsKey, m as getReasoningConfig, n as getReasoningConfigSync, s as supportsReasoning, o as supportsReasoningSync } from './index-BCqEGzBj.js';
|
|
14
|
-
export { H as HttpTransportConfig, M as MCPConfig, a as MCPManager, b as
|
|
15
|
-
export { createMCPManager, httpServer, sseServer, stdioServer } from './mcp/index.js';
|
|
14
|
+
export { H as HttpTransportConfig, M as MCPConfig, a as MCPManager, b as MCPPromptInfo, c as MCPResourceInfo, d as MCPResourceTemplateInfo, e as MCPServerConfig, f as MCPServerStatus, R as RemoteTransportConfig, S as SseTransportConfig, g as StdioTransportConfig } from './types-DMjoFKKv.js';
|
|
15
|
+
export { ClientCredentialsOptions, ClientCredentialsProvider, createMCPManager, httpServer, serviceAccountServer, sseServer, stdioServer } from './mcp/index.js';
|
|
16
16
|
export { AgentTaskChatAdapter, AgentTaskCheckpointReason, AgentTaskCheckpointStrategy, AgentTaskCheckpointStrategyInput, AgentTaskExecutionCheckpoint, AgentTaskExecutionContext, AgentTaskExecutionRun, AgentTaskExecutionSnapshot, AgentTaskObserver, AgentTaskPayload, AgentTaskResult, AgentTaskResumeSnapshot, AgentTaskRunner, AgentTaskRunnerOptions, AgentWorkflowAssistantMessageSnapshot, AgentWorkflowCommitResult, AgentWorkflowInputCommitPlan, AgentWorkflowInterventionSnapshot, AgentWorkflowMessageSnapshot, AgentWorkflowModelStepPlan, AgentWorkflowModelStepResult, AgentWorkflowOperationPlan, AgentWorkflowOutputCommitPlan, AgentWorkflowReplayDecision, AgentWorkflowStepCommitPlan, AgentWorkflowSystemMessageSnapshot, AgentWorkflowToolBatchPlan, AgentWorkflowToolBatchResult, AgentWorkflowToolCallPlan, AgentWorkflowToolCallResult, AgentWorkflowToolCallSnapshot, AgentWorkflowToolMessageSnapshot, AgentWorkflowTurnPhase, AgentWorkflowTurnState, AgentWorkflowUserMessageSnapshot, ContextOverflowError, CreateAgentWorkflowTurnStateOptions, DoomLoopError, applyAgentWorkflowCommitResult, applyAgentWorkflowModelStepResult, applyAgentWorkflowToolBatchResult, applyAgentWorkflowToolCallResult, applyWorkflowInterventions, cloneAgentWorkflowTurnState, commitOutput, commitStep, createAgentTaskRunner, createAgentTurnStepCommitBatch, createAgentWorkflowTurnState, defaultAgentTaskCheckpointStrategy, drainWorkflowInterventions, failAgentWorkflowTurnState, planNextAgentWorkflowOperation, prepareModelStep, processStepStream, queueWorkflowFollowUps, recordAgentWorkflowReplayDecision, restoreAgentWorkflowMessage, restoreAgentWorkflowMessages, runModelStep, runToolBatch, snapshotAgentWorkflowMessage, snapshotAgentWorkflowMessages } from './execution/index.js';
|
|
17
|
-
export { c as convertAgentMessagesToModelMessages } from './model-messages-
|
|
17
|
+
export { c as convertAgentMessagesToModelMessages } from './model-messages-B_MCHyiX.js';
|
|
18
18
|
export { CacheTTL, PromptCacheConfig, createTelemetryConfig, otelMiddleware, promptCacheMiddleware } from './middleware/index.js';
|
|
19
19
|
export { DEFAULT_INSTRUCTION_PATTERNS, DEFAULT_MAX_DEPTH, DEFAULT_MAX_FILE_SIZE, PRIORITY_BASE, PRIORITY_CUSTOM, PRIORITY_ENVIRONMENT, PRIORITY_INSTRUCTIONS, PRIORITY_OVERRIDE, PRIORITY_SKILLS, detectModelFamily, discoverInstructions, formatEnvironment, formatInstructions, gatherEnvironment, getAvailableFamilies, getTemplate, loadGlobalInstructions, summarizeEnvironment } from './prompt/index.js';
|
|
20
20
|
export { Profiles, applyProfile, careful, code, createProfile, explore, filterTools, mergeProfiles, plan, quick, review, watch } from './profiles/index.js';
|
|
@@ -33,6 +33,9 @@ export { ApprovalForwarder, CoordinatorInboxItem, CoordinatorLoopOptions, Coordi
|
|
|
33
33
|
export { createConsoleLogger, createFileLogger, silentLogger } from './logger/index.js';
|
|
34
34
|
import 'zod';
|
|
35
35
|
import '@ai-sdk/provider-utils';
|
|
36
|
+
import '@modelcontextprotocol/sdk/client/auth.js';
|
|
37
|
+
import '@modelcontextprotocol/sdk/types.js';
|
|
38
|
+
import '@modelcontextprotocol/sdk/shared/auth.js';
|
|
36
39
|
import 'jiti';
|
|
37
40
|
|
|
38
41
|
/**
|