@robota-sdk/agent-core 3.0.0-beta.81 → 3.0.0-beta.83
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/CHANGELOG.md +109 -0
- package/README.md +14 -2
- package/dist/browser/index.d.ts +78 -4
- package/dist/browser/index.d.ts.map +1 -1
- package/dist/browser/index.js +9 -9
- package/dist/browser/index.js.map +1 -1
- package/dist/node/{index-CiFlpr7-.d.cts → index-D1_Mak-n.d.cts} +79 -5
- package/dist/node/index-D1_Mak-n.d.cts.map +1 -0
- package/dist/node/{index-DFlMw376.d.ts → index-D4iJ5IsN.d.ts} +79 -5
- package/dist/node/index-D4iJ5IsN.d.ts.map +1 -0
- package/dist/node/index.cjs +9 -9
- package/dist/node/index.d.cts +2 -2
- package/dist/node/index.d.ts +2 -2
- package/dist/node/index.js +9 -9
- package/dist/node/index.js.map +1 -1
- package/dist/node/testing/index.d.cts +1 -1
- package/dist/node/testing/index.d.ts +1 -1
- package/package.json +6 -2
- package/dist/node/index-CiFlpr7-.d.cts.map +0 -1
- package/dist/node/index-DFlMw376.d.ts.map +0 -1
|
@@ -871,6 +871,19 @@ interface ITokenUsage {
|
|
|
871
871
|
completionTokens: number;
|
|
872
872
|
totalTokens: number;
|
|
873
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* The usage triple ({@link ITokenUsage}) plus the prompt-cache read a provider reported for it.
|
|
876
|
+
*
|
|
877
|
+
* Derived from the triple rather than widening it: the triple is also the persisted and wired usage
|
|
878
|
+
* shape (background-task results, subagent IPC), whose decoders declare exactly its three keys.
|
|
879
|
+
*/
|
|
880
|
+
interface ITokenUsageWithCacheRead extends ITokenUsage {
|
|
881
|
+
/**
|
|
882
|
+
* The part of `promptTokens` the provider served from its prompt cache — a subset of
|
|
883
|
+
* `promptTokens`, not an addition to it. Present only when the provider reported it.
|
|
884
|
+
*/
|
|
885
|
+
cacheReadTokens?: number;
|
|
886
|
+
}
|
|
874
887
|
/**
|
|
875
888
|
* Raw provider response interface
|
|
876
889
|
*/
|
|
@@ -1285,6 +1298,12 @@ interface IRunOptions {
|
|
|
1285
1298
|
* per turn — one session serves the operator and any peer addressing it. Never authorization.
|
|
1286
1299
|
*/
|
|
1287
1300
|
driverId?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* Where this run's turn came from (a peer's message, an external event, an agent wake-up), stored
|
|
1303
|
+
* beside `driverId` on the user message so a transcript carried elsewhere still says it. Display
|
|
1304
|
+
* only, like `driverId`; absent for the operator's own turn.
|
|
1305
|
+
*/
|
|
1306
|
+
turnSource?: string;
|
|
1288
1307
|
metadata?: TMetadata;
|
|
1289
1308
|
/**
|
|
1290
1309
|
* Run-scoped EPHEMERAL system context (SELFHOST-008 P3). A transient system-role block included in THIS
|
|
@@ -1299,7 +1318,12 @@ interface IRunOptions {
|
|
|
1299
1318
|
* only an adapter whose origin is listed sends it. Never recorded in execution events.
|
|
1300
1319
|
*/
|
|
1301
1320
|
traceContext?: IRunTraceContext;
|
|
1302
|
-
/**
|
|
1321
|
+
/**
|
|
1322
|
+
* AbortSignal for cancelling execution. Aborting an in-flight run does not throw: `run()` resolves
|
|
1323
|
+
* (and `runStream()` returns) the last assistant text the turn committed before the abort, possibly
|
|
1324
|
+
* `''`; a reply cut off mid-stream is kept in history with `state: 'interrupted'`. Read
|
|
1325
|
+
* `signal.aborted` to tell an interrupted run from a completed one.
|
|
1326
|
+
*/
|
|
1303
1327
|
signal?: AbortSignal;
|
|
1304
1328
|
/** Join an aborted/timed-out provider call before completing; an uncooperative call may remain pending. */
|
|
1305
1329
|
awaitProviderSettlement?: boolean;
|
|
@@ -1322,7 +1346,10 @@ interface IRunOptions {
|
|
|
1322
1346
|
* Treat a turn that ends in tool calls (no trailing text) as a valid completion instead of
|
|
1323
1347
|
* forcing one extra provider call to generate a summary (CORE-011). For decision-agent patterns
|
|
1324
1348
|
* (router/orchestrator/classifier) the tool call IS the answer — this removes the one-call tax.
|
|
1325
|
-
* The
|
|
1349
|
+
* The summary call is the one made when the round cap ends the loop on a tool round; before the cap
|
|
1350
|
+
* the model is called again after tool results as usual, so a decision agent sets
|
|
1351
|
+
* `maxExecutionRounds` too (e.g. `1`). The run resolves with the turn's text, or `''` when it
|
|
1352
|
+
* produced none; consumers read the outcome from the tool results.
|
|
1326
1353
|
*/
|
|
1327
1354
|
allowToolOnlyCompletion?: boolean;
|
|
1328
1355
|
/**
|
|
@@ -1906,6 +1933,14 @@ interface IToolExecutionContext {
|
|
|
1906
1933
|
* Owner-bound instances must not be layered across different owners.
|
|
1907
1934
|
*/
|
|
1908
1935
|
baseEventService?: IEventService;
|
|
1936
|
+
/**
|
|
1937
|
+
* The service this call's caller would give the tool with `setEventService`, carried with the
|
|
1938
|
+
* call instead. One tool instance can serve several agents, and the service set on it is
|
|
1939
|
+
* whichever agent set one last; a tool that emits events of its own (the `FunctionTool` span)
|
|
1940
|
+
* emits them here when present, so they reach the agent that made the call. The no-op default
|
|
1941
|
+
* service means that caller wants none.
|
|
1942
|
+
*/
|
|
1943
|
+
instanceEventService?: IEventService;
|
|
1909
1944
|
/**
|
|
1910
1945
|
* Injected "ask the user" port (CMD-004). Present when an interactive renderer is attached, letting
|
|
1911
1946
|
* a tool solicit a structured answer from the user (the model-issued question seam consumed by
|
|
@@ -4720,7 +4755,7 @@ declare class ConversationHistory {
|
|
|
4720
4755
|
* @example
|
|
4721
4756
|
* ```typescript
|
|
4722
4757
|
* import { LocalExecutor } from '@robota-sdk/agent-core';
|
|
4723
|
-
* import { OpenAIProvider } from '@robota-sdk/agent-provider
|
|
4758
|
+
* import { OpenAIProvider } from '@robota-sdk/agent-provider-openai';
|
|
4724
4759
|
*
|
|
4725
4760
|
* const executor = new LocalExecutor();
|
|
4726
4761
|
* executor.registerProvider('openai', new OpenAIProvider({ apiKey: 'sk-...' }));
|
|
@@ -5037,6 +5072,7 @@ declare class FunctionTool implements IFunctionTool {
|
|
|
5037
5072
|
* Set EventService for post-construction injection.
|
|
5038
5073
|
* Accepts EventService as-is without transformation.
|
|
5039
5074
|
* Caller is responsible for providing properly configured EventService.
|
|
5075
|
+
* A call whose context carries `instanceEventService` emits there instead.
|
|
5040
5076
|
*/
|
|
5041
5077
|
setEventService(eventService: IEventService | undefined): void;
|
|
5042
5078
|
/**
|
|
@@ -5847,19 +5883,43 @@ declare function runRegistryTransaction(steps: readonly IRegistryTransactionStep
|
|
|
5847
5883
|
* same triple by definition, so it is derived rather than re-declared.
|
|
5848
5884
|
*/
|
|
5849
5885
|
type ISessionUsageTotals = ITokenUsage;
|
|
5886
|
+
/**
|
|
5887
|
+
* Sum the token usage the provider reported on the assistant messages of `messages`.
|
|
5888
|
+
*
|
|
5889
|
+
* `promptTokens` sums each message's input tokens, `completionTokens` its output tokens, and
|
|
5890
|
+
* `totalTokens` is their sum — which can differ from the totals providers reported (a thinking
|
|
5891
|
+
* model's total also counts thought tokens). `cacheReadTokens` — the part of `promptTokens` served
|
|
5892
|
+
* from the provider's prompt cache — is present only when at least one message reported it, and is a
|
|
5893
|
+
* lower bound when only some did. Returns undefined when no assistant message reported usage.
|
|
5894
|
+
*
|
|
5895
|
+
* One run's usage (every provider call it made, tool rounds and a forced summary included):
|
|
5896
|
+
*
|
|
5897
|
+
* ```ts
|
|
5898
|
+
* const before = agent.getHistory().length;
|
|
5899
|
+
* await agent.run(prompt);
|
|
5900
|
+
* const usage = sumMessagesUsage(agent.getHistory().slice(before));
|
|
5901
|
+
* ```
|
|
5902
|
+
*/
|
|
5903
|
+
declare function sumMessagesUsage(messages: readonly TUniversalMessage[]): ITokenUsageWithCacheRead | undefined;
|
|
5850
5904
|
/**
|
|
5851
5905
|
* ANALYTICS-001 (Phase 2): sum assistant token usage across a history timeline — used to capture a
|
|
5852
5906
|
* subagent / background task's total usage so it can be attributed to its source in the parent log.
|
|
5853
5907
|
* Returns undefined when no usage was reported (so callers can skip recording an empty entry).
|
|
5908
|
+
*
|
|
5909
|
+
* The result is exactly the usage triple: it is persisted as a background task's usage, whose record
|
|
5910
|
+
* declares no other key. Use {@link sumMessagesUsage} for the prompt-cache read as well.
|
|
5854
5911
|
*/
|
|
5855
5912
|
declare function sumHistoryUsage(history: readonly IHistoryEntry[]): ISessionUsageTotals | undefined;
|
|
5856
5913
|
interface IAssistantUsageMetadata {
|
|
5857
5914
|
inputTokens: number;
|
|
5858
5915
|
outputTokens: number;
|
|
5916
|
+
/** The part of `inputTokens` served from the provider's prompt cache, when it was reported. */
|
|
5917
|
+
cacheReadTokens?: number;
|
|
5859
5918
|
usage: {
|
|
5860
5919
|
totalTokens: number;
|
|
5861
5920
|
inputTokens: number;
|
|
5862
5921
|
outputTokens: number;
|
|
5922
|
+
cacheReadTokens?: number;
|
|
5863
5923
|
};
|
|
5864
5924
|
}
|
|
5865
5925
|
declare function collectAssistantUsageMetadata(message: TUniversalMessage): IAssistantUsageMetadata | undefined;
|
|
@@ -6490,6 +6550,11 @@ interface IToolPermissionProfile {
|
|
|
6490
6550
|
aliases?: readonly string[];
|
|
6491
6551
|
/** The tool answers the peer whose message started the current turn; it exists only there. */
|
|
6492
6552
|
repliesToPeer?: boolean;
|
|
6553
|
+
/**
|
|
6554
|
+
* The tool acts for the operator in a way a peer's message must not set off; it does not exist in
|
|
6555
|
+
* a turn a peer's message started.
|
|
6556
|
+
*/
|
|
6557
|
+
notInPeerTurn?: boolean;
|
|
6493
6558
|
}
|
|
6494
6559
|
/**
|
|
6495
6560
|
* Declare how a tool is treated by the permission system. CORE-030.
|
|
@@ -6677,6 +6742,10 @@ interface IContextTokenUsage {
|
|
|
6677
6742
|
inputTokens: number;
|
|
6678
6743
|
outputTokens: number;
|
|
6679
6744
|
cacheCreationTokens?: number;
|
|
6745
|
+
/**
|
|
6746
|
+
* Anthropic-style: cache reads counted in addition to `inputTokens`. Not the message-usage
|
|
6747
|
+
* `cacheReadTokens` (`IMessageTokenUsage`), which is a part of the input.
|
|
6748
|
+
*/
|
|
6680
6749
|
cacheReadTokens?: number;
|
|
6681
6750
|
}
|
|
6682
6751
|
/** Context window state snapshot */
|
|
@@ -6716,6 +6785,11 @@ interface IMessageTokenUsage {
|
|
|
6716
6785
|
readonly inputTokens: number;
|
|
6717
6786
|
readonly outputTokens: number;
|
|
6718
6787
|
readonly totalTokens?: number;
|
|
6788
|
+
/**
|
|
6789
|
+
* The part of `inputTokens` the provider served from its prompt cache (a subset of `inputTokens`).
|
|
6790
|
+
* Present only when the provider reported it.
|
|
6791
|
+
*/
|
|
6792
|
+
readonly cacheReadTokens?: number;
|
|
6719
6793
|
}
|
|
6720
6794
|
/** Read normalized provider usage from a universal message when present. */
|
|
6721
6795
|
declare function readTokenUsageFromMessage(message: TUniversalMessage): IMessageTokenUsage | undefined;
|
|
@@ -6889,5 +6963,5 @@ declare function decodeHookVerdict(raw: string, source: THookDefinition['type'],
|
|
|
6889
6963
|
/** Does a hook that reached no verdict block at this event? */
|
|
6890
6964
|
declare function isEnforcing(event: THookEvent): boolean;
|
|
6891
6965
|
//#endregion
|
|
6892
|
-
export { parseParameterRule as $, IAgentConfig as $a, resolveModelCapabilities as $c, isConfirmed as $i, createImageProviderFromDefinition as $n, TASK_EVENT_PREFIX as $o, IToolSchemaProjectionProfile as $r, IRawProviderResponse as $s, lifecycleOf as $t, allowRulesForAutoMode as A, IProviderStructuredOutputCapability as Aa, AuthenticationError as Ac, IRemoteExecutorConfig as Ai, ICacheEntry as Al, IEventEmitterMetricsSnapshot as An, PluginPriority as Ao, TTimerId as Ar, TOOL_SEARCH_TOOL_NAME as As, IHandoffOrchestrationSpec as At, IPermissionPolicyProjection as B, IProviderProfileConfig as Ba, RobotaError as Bc, TConversationContextMetadata as Bi, TMetadata as Bl, isEnvReference as Bn, ISpanCompletionEventData as Bo, TMessageConverterRegistry as Br, normalizeStructuredOutput as Bs, AGENT_EVENTS as Bt, IContextTokenEstimate as C, IVideoGenerationRequest as Ca, IModelFallbackNotice as Cc, IEventHistorySnapshot as Ci, isUserMessage as Cl, assertResidentToolRemains as Cn, IPluginErrorContext as Co, IPlatformShell as Cr, EVENT_EMITTER_EVENTS as Cs, createExecutionProxy as Ct, estimateToolSchemaTokens as D, TProviderMediaResult as Da, classifyProviderFailure as Dc, IExecutorStreamMessageEvent as Di, IActionRequest as Dl, IEventEmitterHierarchicalEventData as Dn, IPluginOptions as Do, resolvePlatformShell as Dr, TEventName as Ds, ORCHESTRATION_EVENT_PREFIX as Dt, estimateSerializedContextTokens as E, TImageInputSource as Ea, TProviderFailureReason as Ec, IExecutorChatResult as Ei, IActionOption as El, EventEmitterPlugin as En, IPluginHooks as Eo, UnsupportedShellError as Er, TEventEmitterListener as Es, ORCHESTRATION_EVENTS as Et, IPermissionPatternProblem as F, IProviderDefinitionConfig as Fa, ModelNotAvailableError as Fc, IConversationResponse as Fi, TComplexConfigValue as Fl, TOutputRetention as Fn, IToolExecutionResult as Fo, validateApiKey as Fr, TExecutionEventData as Fs, IOrchestrationStep as Ft, IToolPermissionArgument as G, TProviderModelCatalogStatus as Ga, TErrorExternalInput as Gc, TToolProgressCallback as Gi, createAssistantMessage as Gn, TOOL_BODY_EVENTS as Go, AbstractExecutor as Gr, IZodSchema as Gs, IAssistantUsageMetadata as Gt, IParameterRule as H, IProviderSetupHelpLink as Ha, StorageError as Hc, TToolExecutionParameters as Hi, TToolParameters as Hl, IAIProviderInstance as Hn, PROVIDER_FALLBACK_EVENTS as Ho, TProviderMessage as Hr, validateAgainstJsonSchema as Hs, peerDriverOf as Ht, findInvalidPermissionPatterns as I, IProviderEndpoint as Ia, NetworkError as Ic, IConversationService as Ii, TConfigData as Il, createBoundedOutput as In, IToolRegistry as Io, validateModelName as Ir, IJsonSchemaOutput as Is, IOrchestrationStepResult as It, clearRegisteredToolProfiles as J, TProviderSetupHelpLinkKind as Ja, IModelRef as Jc, isProgressReportingTool as Ji, createUserMessage as Jn, readModelFallbackNotice as Jo, IExecutorAwareProviderConfig as Jr, IAIProvider as Js, sumHistoryUsage as Jt, IToolPermissionProfile as K, TProviderModelLifecycle as Ka, ToolExecutionError as Kc, getToolEstimatedDuration as Ki, createSystemMessage as Kn, TOOL_PERMISSION_EVENTS as Ko, AbstractPlugin as Kr, IZodSchemaDef as Ks, ISessionUsageTotals as Kt, findPermissionPatternWarnings as L, IProviderModelCatalog as La, PluginError as Lc, IConversationServiceOptions as Li, TConfigValue as Ll, ENV_REFERENCE_PREFIX as Ln, IToolResult as Lo, validateProviderName as Lr, IStructuredOutputSpec as Ls, IParallelOrchestrationSpec as Lt, splitCommandSegments as M, TStructuredOutputProvenance as Ma, CircuitBreakerOpenError as Mc, TExecutorStreamEvent as Mi, ICacheOptions as Ml, shellArgumentForDisplay as Mn, IParameterValidationResult as Mo, ISimpleValidationResult as Mr, TToolSearchSetting as Ms, IOrchestrationDelegation as Mt, applyPresetToolLists as N, IProviderCredentialRequirement as Na, ConfigurationError as Nc, IContextOptions as Ni, ICacheStats as Nl, IBoundedOutput as Nn, ITool as No, Validator as Nr, IRunOptions as Ns, IOrchestrationEventData as Nt, IContextTokenUsage as O, isImageGenerationProvider as Oa, readProviderFailureDetails as Oc, IExecutorStreamTerminalEvent as Oi, IUserInteraction as Ol, IEventEmitterPluginOptions as On, IPluginStats as Oo, startPeriodicTask as Or, TExecutionEventName as Os, TOrchestrationEvent as Ot, toolNamesToPatterns as P, IProviderDefinition as Pa, IProviderFailureDetails as Pc, IConversationContext as Pi, ICacheStorage as Pl, IBoundedOutputOptions as Pn, IToolExecutionContext as Po, validateAgentConfig as Pr, TExecutionEventCallback as Ps, IOrchestrationRunResult as Pt, matchesAnyPattern as Q, IAgent as Qa, modelDeclaresCapability as Qc, confirmAction as Qi, IMediaProviderOverrides as Qn, TASK_EVENTS as Qo, IToolSchemaProjectionChange as Qr, IProviderRequest as Qs, isRegistryTransactionError as Qt, validatePermissionPattern as R, IProviderModelCatalogEntry as Ra, ProviderError as Rc, IStreamingChunk as Ri, TContextData as Rl, formatEnvReference as Rn, TToolExecutor as Ro, validateUserInput as Rr, TStructuredOutputSchema as Rs, ISequentialOrchestrationSpec as Rt, CONTEXT_ESTIMATE_CHARS_PER_TOKEN as S, IVideoGenerationProvider as Sa, createDefaultProviderCapabilities as Sc, IEventHistoryRecord as Si, isToolMessage as Sl, DEFERRED_WITHOUT_LOADER_MESSAGE as Sn, IPluginData as So, traceHeadersFor as Sr, TEventUniversalValue as Ss, ExecutionProxy as St, estimateContextTokensFromMessages as T, IVideoJobSnapshot as Ta, IProviderFailureClassification as Tc, IExecutor as Ti, IActionDefault as Tl, ToolRegistry as Tn, IPluginExecutionResult as To, TShellKind as Tr, IEventEmitterPlugin as Ts, IExecutionProxyConfig as Tt, IPermissionEvaluationContext as U, IProviderSetupStepDefinition as Ua, StructuredOutputError as Uc, IProgressReportingTool as Ui, TypeUtils as Ul, LocalExecutor as Un, SPAN_EVENTS as Uo, isAbortFailure as Ur, ISchemaConversionOptions as Us, printablePeerDriver as Ut, projectPermissionPolicy as V, IProviderProfileDefaults as Va, SameToolInputLoopError as Vc, TResponseMetadata as Vi, TMetadataValue as Vl, resolveEnvReference as Vn, PROVIDER_CALL_EVENTS as Vo, TMessageFormatConverter as Vr, parseStructuredResponseText as Vs, AGENT_EVENT_PREFIX as Vt, IPermissionLists as W, TProviderCredentialField as Wa, TErrorContextData as Wc, IToolExecutionStep as Wi, ConversationHistory as Wn, SPAN_EVENT_PREFIX as Wo, AbstractTool as Wr, IZodParseResult as Ws, EventHistoryModule as Wt, getToolPermissionProfile as X, formatSupportedProviderTypes as Xa, IModelCapabilityDeviation as Xc, CONFIRM_NO as Xi, createProviderFromConfig as Xn, USER_EVENTS as Xo, TProviderLoggingData as Xr, IProviderNativeRawPayloadEvent as Xs, IRegistryTransactionError as Xt, evaluatePermission as Y, findProviderDefinition as Ya, TRoleModelMap as Yc, setToolProgressCallback as Yi, ConversationStore as Yn, TUserEvent as Yo, IProviderRuntimeConfig as Yr, IChatOptions as Ys, IRegistryOwnedLifecycle as Yt, isToolDeniedOutright as Z, getProviderCredentialRequirement as Za, IProviderCapabilityTable as Zc, CONFIRM_YES as Zi, normalizeProviderConfig as Zn, USER_EVENT_PREFIX as Zo, IToolSchemaProjection as Zr, IProviderOptions as Zs, IRegistryTransactionStep as Zt, getModelName as _, IImageGenerationResult as _a, IProviderFunctionCallingCapability as _c, IStats as _i, chatEntryToMessage as _l, IDestroyResult as _n, setGlobalLoggerSink as _o, providerCallSpanId as _r, IOwnerPathSegment as _s, TBackgroundPermissionPolicy as _t, IModelPrice as a, IAIProviderManager as aa, TProviderOptionValueBase as ac, TToolSchemaProjectionOutcome as ai, IInlineImageMessagePart as al, IAgentFactoryOptions as an, TToolExecutionFunction as ao, IStructuredOutputResolutionInput as ar, bindEventServiceOwner as as, PROTECTED_FILE_NAMES as at, readTokenUsageFromMessage as b, IProviderMediaError as ba, IProviderNativeWebToolRequest as bc, ITerminalOutput as bi, isChatEntry as bl, TOOL_EVENTS as bn, IPluginContext as bo, toolTraceContextFor as br, TEventListener as bs, TRUST_TO_MODE as bt, estimateBlendedCostPer1000 as c, IMediaProviderConfig as ca, getProviderCapabilities as cc, projectToolSchema as ci, IToolCall as cl, DEFAULT_TOOL_RESULT_WARNING_CHARS as cn, ILoggerOptions as co, getSchemaTypeName as cr, generateSpanId as cs, RISK_CLASS_POLICY as ct, DEFAULT_MAX_OUTPUT as d, findMediaProviderDefinition as da, IToolSchema as dc, AbstractAgent as di, IUserMessage as dl, MAX_TOOL_RESULT_CHARS as dn, TUtilLogLevel as do, ISchemaClosureOptions as dr, IBaseEventData as ds, TArgumentKind as dt, multiSelectAction as ea, ITokenUsage as ec, PARAMETER_SCHEMA_KEYWORDS as ei, resolveModelCapability as el, runRegistryTransaction as en, IAgentTemplate as eo, createVideoProviderFromDefinition as er, AbstractEventService as es, registerToolPermissionProfile as et, IModelDefinition as f, isMediaProviderDefinition as fa, TJSONSchemaEnum as fc, ICredentialKey as fi, TMessageState as fl, TToolResultAdmissionErrorCode as fn, createLogger as fo, closeObjectSchemas as fr, IEventContext as fs, TMatchDirection as ft, getModelMaxOutput as g, IImageGenerationRequest as ga, IProviderCapabilities as gc, IFileSystemAsync as gi, TUniversalMessageRole as gl, Robota as gn, setGlobalLogLevel as go, outboundTraceContextFor as gr, IExecutionEventData as gs, DEFAULT_BACKGROUND_PERMISSION_POLICY as gt, getModelContextWindow as h, IImageGenerationProvider as ha, IProviderSpecificOptions as hc, IFileSystem as hi, TUniversalMessagePart as hl, wasToolResultAdmitted as hn, logger as ho, isMintedSpanId as hr, IEventServiceOwnerBinding as hs, isReadOnlyCommandLine as ht, runHooks as i, IToolFactory as ia, TProviderNativeRawPayloadKind as ic, TOOL_SCHEMA_PROJECTION_MAX_NODES as ii, IHistoryEntry as il, IAgentCreationStats as in, IToolWithEventService as io, processEnvResolver as ir, StructuredEventService as is, PROTECTED_DIRECTORY_NAMES as it, isBroadExecutionAllowRule as j, TStructuredOutputMechanism as ja, CacheIntegrityError as jc, IStreamExecutionRequest as ji, ICacheKey as jl, InMemoryEventEmitterMetrics as jn, IFunctionTool as jo, ErrorUtils as jr, TToolSearchMode as js, IHierarchicalOrchestrationSpec as jt, IContextWindowState as k, isVideoGenerationProvider as ka, toProviderError as kc, ILocalExecutorConfig as ki, TActionResponse as kl, IEventEmitterMetrics as kn, PluginCategory as ko, stopPeriodicTask as kr, IDeferredToolCatalog as ks, IGroupChatOrchestrationSpec as kt, lookupModelPrice as l, IMediaProviderCredentialRequirement as la, IObjectParameterSchema as lc, AbstractManager as li, IToolMessage as ll, IToolResultAdmissionOptions as ln, IUtilLogEntry as lo, hasValidationConstraints as lr, isDefaultEventService as ls, TToolRiskClass as lt, formatTokenCount as m, IImageEditRequest as ma, TParameterDefaultValue as mc, IDirent as mi, TUniversalMessageMetadata as ml, admitToolResult as mn, getGlobalLoggerSink as mo, buildTraceparent as mr, IEventService as ms, TResolveInWorkspace as mt, decodeHookVerdict as n, textAction as na, TProviderNativeRawPayload as nc, STRICT_TOOL_SCHEMA_PROFILE as ni, IAssistantMessage as nl, AgentTemplates as nn, IAbstractToolOptions as no, TEnvResolver as nr, DefaultEventService as ns, toolNameMatches as nt, MODEL_PRICES as o, IToolManager as oa, TTextDeltaCallback as oc, TToolSchemaProjectionProfileBase as oi, ISystemMessage as ol, IAgentLifecycleEvents as on, ConsoleLogger as oo, resolveStructuredOutputCapability as or, bindWithOwnerPath as os, isProtectedPath as ot, findModelDefinition as p, IImageComposeRequest as pa, TJSONSchemaKind as pc, ICredentialStore as pi, TUniversalMessage as pl, ToolResultAdmissionError as pn, getGlobalLogLevel as po, zodToJsonSchema as pr, IEventObjectValue as ps, IReadOnlyCommandContext as pt, TToolArgs as q, TProviderSetupField as qa, ValidationError as qc, getToolExecutionSteps as qi, createToolMessage as qn, TSpanEvent as qo, AbstractAIProvider as qr, IResponseFormatConfig as qs, collectAssistantUsageMetadata as qt, GuardrailExecutor as r, IOpenAPIToolConfig as ra, TProviderNativeRawPayloadCallback as rc, TOOL_SCHEMA_PROJECTION_MAX_DEPTH as ri, IBaseMessage as rl, ITemplateApplicationResult as rn, IToolContract as ro, createRecordEnvResolver as rr, ObservableEventService as rs, ICriticalPathContext as rt, calculateModelCost as s, TManagerToolParameters as sa, TToolChoice as sc, hashToolSchema as si, ITextMessagePart as sl, DEFAULT_TOOL_RESULT_HARD_CHARS as sn, ILogger as so, extractEnumValues as sr, composeEventName as ss, removesCriticalPath as st, isEnforcing as t, selectAction as ta, TProviderConfigValue as tc, PERMISSIVE_TOOL_SCHEMA_PROFILE as ti, TProviderModelCapability as tl, AgentFactory as tn, IAbstractTool as to, resolveMediaProviderConfig as tr, DEFAULT_ABSTRACT_EVENT_SERVICE as ts, requiresFreshApproval as tt, DEFAULT_CONTEXT_WINDOW as u, IMediaProviderDefinition as ua, IParameterSchema as uc, IManagerLifecycleOptions as ui, IUriImageMessagePart as ul, IToolResultSpillStore as un, SilentLogger as uo, ISchemaClosureChange as ur, IAgentEventData as us, UNCLASSIFIED_TOOL_FALLBACK as ut, registerModelMetadata as v, IInlineImageInputSource as va, IProviderNativeWebToolCapabilities as vc, ISession as vi, getMessagesForAPI as vl, EXECUTION_EVENTS as vn, IPlugin as vo, spanIdFromMintedId as vr, IToolEventData as vs, TPermissionDecision$1 as vt, IContextTokenEstimateOptions as w, IVideoJobAccepted as wa, TModelFallbackCallback as wc, IChatExecutionRequest as wi, messageToHistoryEntry as wl, FunctionTool as wn, IPluginExecutionContext as wo, IPlatformShellResolutionRequest as wr, IEventEmitterEventData as ws, withEventEmission as wt, readTokenUsageFromMetadata as x, IUriImageInputSource as xa, assertProviderNativeWebToolsAvailable as xc, IEventHistoryModule as xi, isSystemMessage as xl, TOOL_EVENT_PREFIX as xn, IPluginContract as xo, traceEnvFor as xr, TEventLoggerData as xs, TTrustLevel as xt, IMessageTokenUsage as y, IMediaOutputRef as ya, IProviderNativeWebToolCapability as yc, ISpinner as yi, isAssistantMessage as yl, EXECUTION_EVENT_PREFIX as yn, IPluginConfig as yo, subprocessTraceEnvironment as yr, TEventExtensionValue as ys, TPermissionMode as yt, IPermissionPolicyContext as z, IProviderProbeResult as za, RateLimitError as zc, IToolExecutionRequest as zi, TLoggerData as zl, hasUsableSecretReference as zn, TToolMetadata as zo, MessageConverter as zr, TStructuredOutputValidation as zs, TOrchestrationPrimitive as zt };
|
|
6893
|
-
//# sourceMappingURL=index-
|
|
6966
|
+
export { parseParameterRule as $, IAgent as $a, IProviderCapabilityTable as $c, confirmAction as $i, IMediaProviderOverrides as $n, TASK_EVENTS as $o, IToolSchemaProjectionChange as $r, IProviderRequest as $s, isRegistryTransactionError as $t, allowRulesForAutoMode as A, isVideoGenerationProvider as Aa, readProviderFailureDetails as Ac, ILocalExecutorConfig as Ai, IUserInteraction as Al, IEventEmitterMetrics as An, PluginCategory as Ao, stopPeriodicTask as Ar, IDeferredToolCatalog as As, IHandoffOrchestrationSpec as At, IPermissionPolicyProjection as B, IProviderProbeResult as Ba, ProviderError as Bc, IToolExecutionRequest as Bi, TContextData as Bl, hasUsableSecretReference as Bn, TToolMetadata as Bo, MessageConverter as Br, TStructuredOutputValidation as Bs, AGENT_EVENTS as Bt, IContextTokenEstimate as C, IVideoGenerationProvider as Ca, assertProviderNativeWebToolsAvailable as Cc, IEventHistoryRecord as Ci, isSystemMessage as Cl, DEFERRED_WITHOUT_LOADER_MESSAGE as Cn, IPluginData as Co, traceHeadersFor as Cr, TEventUniversalValue as Cs, createExecutionProxy as Ct, estimateToolSchemaTokens as D, TImageInputSource as Da, IProviderFailureClassification as Dc, IExecutorChatResult as Di, IActionDefault as Dl, EventEmitterPlugin as Dn, IPluginHooks as Do, UnsupportedShellError as Dr, TEventEmitterListener as Ds, ORCHESTRATION_EVENT_PREFIX as Dt, estimateSerializedContextTokens as E, IVideoJobSnapshot as Ea, TModelFallbackCallback as Ec, IExecutor as Ei, messageToHistoryEntry as El, ToolRegistry as En, IPluginExecutionResult as Eo, TShellKind as Er, IEventEmitterPlugin as Es, ORCHESTRATION_EVENTS as Et, IPermissionPatternProblem as F, IProviderDefinition as Fa, ConfigurationError as Fc, IConversationContext as Fi, ICacheStats as Fl, IBoundedOutputOptions as Fn, IToolExecutionContext as Fo, validateAgentConfig as Fr, TExecutionEventCallback as Fs, IOrchestrationStep as Ft, IToolPermissionArgument as G, TProviderCredentialField as Ga, StructuredOutputError as Gc, IToolExecutionStep as Gi, TypeUtils as Gl, ConversationHistory as Gn, SPAN_EVENT_PREFIX as Go, AbstractTool as Gr, IZodParseResult as Gs, IAssistantUsageMetadata as Gt, IParameterRule as H, IProviderProfileDefaults as Ha, RobotaError as Hc, TResponseMetadata as Hi, TMetadata as Hl, resolveEnvReference as Hn, PROVIDER_CALL_EVENTS as Ho, TMessageFormatConverter as Hr, parseStructuredResponseText as Hs, peerDriverOf as Ht, findInvalidPermissionPatterns as I, IProviderDefinitionConfig as Ia, IProviderFailureDetails as Ic, IConversationResponse as Ii, ICacheStorage as Il, TOutputRetention as In, IToolExecutionResult as Io, validateApiKey as Ir, TExecutionEventData as Is, IOrchestrationStepResult as It, clearRegisteredToolProfiles as J, TProviderSetupField as Ja, ToolExecutionError as Jc, getToolExecutionSteps as Ji, createToolMessage as Jn, TSpanEvent as Jo, AbstractAIProvider as Jr, IResponseFormatConfig as Js, sumHistoryUsage as Jt, IToolPermissionProfile as K, TProviderModelCatalogStatus as Ka, TErrorContextData as Kc, TToolProgressCallback as Ki, createAssistantMessage as Kn, TOOL_BODY_EVENTS as Ko, AbstractExecutor as Kr, IZodSchema as Ks, ISessionUsageTotals as Kt, findPermissionPatternWarnings as L, IProviderEndpoint as La, ModelNotAvailableError as Lc, IConversationService as Li, TComplexConfigValue as Ll, createBoundedOutput as Ln, IToolRegistry as Lo, validateModelName as Lr, IJsonSchemaOutput as Ls, IParallelOrchestrationSpec as Lt, splitCommandSegments as M, TStructuredOutputMechanism as Ma, AuthenticationError as Mc, IStreamExecutionRequest as Mi, ICacheEntry as Ml, InMemoryEventEmitterMetrics as Mn, IFunctionTool as Mo, ErrorUtils as Mr, TToolSearchMode as Ms, IOrchestrationDelegation as Mt, applyPresetToolLists as N, TStructuredOutputProvenance as Na, CacheIntegrityError as Nc, TExecutorStreamEvent as Ni, ICacheKey as Nl, shellArgumentForDisplay as Nn, IParameterValidationResult as No, ISimpleValidationResult as Nr, TToolSearchSetting as Ns, IOrchestrationEventData as Nt, IContextTokenUsage as O, TProviderMediaResult as Oa, TProviderFailureReason as Oc, IExecutorStreamMessageEvent as Oi, IActionOption as Ol, IEventEmitterHierarchicalEventData as On, IPluginOptions as Oo, resolvePlatformShell as Or, TEventName as Os, TOrchestrationEvent as Ot, toolNamesToPatterns as P, IProviderCredentialRequirement as Pa, CircuitBreakerOpenError as Pc, IContextOptions as Pi, ICacheOptions as Pl, IBoundedOutput as Pn, ITool as Po, Validator as Pr, IRunOptions as Ps, IOrchestrationRunResult as Pt, matchesAnyPattern as Q, getProviderCredentialRequirement as Qa, IModelCapabilityDeviation as Qc, CONFIRM_YES as Qi, normalizeProviderConfig as Qn, USER_EVENT_PREFIX as Qo, IToolSchemaProjection as Qr, IProviderOptions as Qs, IRegistryTransactionStep as Qt, validatePermissionPattern as R, IProviderModelCatalog as Ra, NetworkError as Rc, IConversationServiceOptions as Ri, TConfigData as Rl, ENV_REFERENCE_PREFIX as Rn, IToolResult as Ro, validateProviderName as Rr, IStructuredOutputSpec as Rs, ISequentialOrchestrationSpec as Rt, CONTEXT_ESTIMATE_CHARS_PER_TOKEN as S, IUriImageInputSource as Sa, IProviderNativeWebToolRequest as Sc, IEventHistoryModule as Si, isChatEntry as Sl, TOOL_EVENT_PREFIX as Sn, IPluginContract as So, traceEnvFor as Sr, TEventLoggerData as Ss, ExecutionProxy as St, estimateContextTokensFromMessages as T, IVideoJobAccepted as Ta, IModelFallbackNotice as Tc, IChatExecutionRequest as Ti, isUserMessage as Tl, FunctionTool as Tn, IPluginExecutionContext as To, IPlatformShellResolutionRequest as Tr, IEventEmitterEventData as Ts, IExecutionProxyConfig as Tt, IPermissionEvaluationContext as U, IProviderSetupHelpLink as Ua, SameToolInputLoopError as Uc, TToolExecutionParameters as Ui, TMetadataValue as Ul, IAIProviderInstance as Un, PROVIDER_FALLBACK_EVENTS as Uo, TProviderMessage as Ur, validateAgainstJsonSchema as Us, printablePeerDriver as Ut, projectPermissionPolicy as V, IProviderProfileConfig as Va, RateLimitError as Vc, TConversationContextMetadata as Vi, TLoggerData as Vl, isEnvReference as Vn, ISpanCompletionEventData as Vo, TMessageConverterRegistry as Vr, normalizeStructuredOutput as Vs, AGENT_EVENT_PREFIX as Vt, IPermissionLists as W, IProviderSetupStepDefinition as Wa, StorageError as Wc, IProgressReportingTool as Wi, TToolParameters as Wl, LocalExecutor as Wn, SPAN_EVENTS as Wo, isAbortFailure as Wr, ISchemaConversionOptions as Ws, EventHistoryModule as Wt, getToolPermissionProfile as X, findProviderDefinition as Xa, IModelRef as Xc, setToolProgressCallback as Xi, ConversationStore as Xn, TUserEvent as Xo, IProviderRuntimeConfig as Xr, IChatOptions as Xs, IRegistryOwnedLifecycle as Xt, evaluatePermission as Y, TProviderSetupHelpLinkKind as Ya, ValidationError as Yc, isProgressReportingTool as Yi, createUserMessage as Yn, readModelFallbackNotice as Yo, IExecutorAwareProviderConfig as Yr, IAIProvider as Ys, sumMessagesUsage as Yt, isToolDeniedOutright as Z, formatSupportedProviderTypes as Za, TRoleModelMap as Zc, CONFIRM_NO as Zi, createProviderFromConfig as Zn, USER_EVENTS as Zo, TProviderLoggingData as Zr, IProviderNativeRawPayloadEvent as Zs, IRegistryTransactionError as Zt, getModelName as _, IImageGenerationRequest as _a, IProviderSpecificOptions as _c, IFileSystemAsync as _i, TUniversalMessagePart as _l, Robota as _n, setGlobalLogLevel as _o, outboundTraceContextFor as _r, IExecutionEventData as _s, TBackgroundPermissionPolicy as _t, IModelPrice as a, IToolFactory as aa, TProviderNativeRawPayloadCallback as ac, TOOL_SCHEMA_PROJECTION_MAX_NODES as ai, IBaseMessage as al, IAgentCreationStats as an, IToolWithEventService as ao, processEnvResolver as ar, StructuredEventService as as, PROTECTED_FILE_NAMES as at, readTokenUsageFromMessage as b, IMediaOutputRef as ba, IProviderNativeWebToolCapabilities as bc, ISpinner as bi, getMessagesForAPI as bl, EXECUTION_EVENT_PREFIX as bn, IPluginConfig as bo, subprocessTraceEnvironment as br, TEventExtensionValue as bs, TRUST_TO_MODE as bt, estimateBlendedCostPer1000 as c, TManagerToolParameters as ca, TTextDeltaCallback as cc, hashToolSchema as ci, ISystemMessage as cl, DEFAULT_TOOL_RESULT_HARD_CHARS as cn, ILogger as co, extractEnumValues as cr, composeEventName as cs, RISK_CLASS_POLICY as ct, DEFAULT_MAX_OUTPUT as d, IMediaProviderDefinition as da, IObjectParameterSchema as dc, IManagerLifecycleOptions as di, IToolMessage as dl, IToolResultSpillStore as dn, SilentLogger as do, ISchemaClosureChange as dr, IAgentEventData as ds, TArgumentKind as dt, isConfirmed as ea, IRawProviderResponse as ec, IToolSchemaProjectionProfile as ei, modelDeclaresCapability as el, lifecycleOf as en, IAgentConfig as eo, createImageProviderFromDefinition as er, TASK_EVENT_PREFIX as es, registerToolPermissionProfile as et, IModelDefinition as f, findMediaProviderDefinition as fa, IParameterSchema as fc, AbstractAgent as fi, IUriImageMessagePart as fl, MAX_TOOL_RESULT_CHARS as fn, TUtilLogLevel as fo, ISchemaClosureOptions as fr, IBaseEventData as fs, TMatchDirection as ft, getModelMaxOutput as g, IImageGenerationProvider as ga, TParameterDefaultValue as gc, IFileSystem as gi, TUniversalMessageMetadata as gl, wasToolResultAdmitted as gn, logger as go, isMintedSpanId as gr, IEventServiceOwnerBinding as gs, DEFAULT_BACKGROUND_PERMISSION_POLICY as gt, getModelContextWindow as h, IImageEditRequest as ha, TJSONSchemaKind as hc, IDirent as hi, TUniversalMessage as hl, admitToolResult as hn, getGlobalLoggerSink as ho, buildTraceparent as hr, IEventService as hs, isReadOnlyCommandLine as ht, runHooks as i, IOpenAPIToolConfig as ia, TProviderNativeRawPayload as ic, TOOL_SCHEMA_PROJECTION_MAX_DEPTH as ii, IAssistantMessage as il, ITemplateApplicationResult as in, IToolContract as io, createRecordEnvResolver as ir, ObservableEventService as is, PROTECTED_DIRECTORY_NAMES as it, isBroadExecutionAllowRule as j, IProviderStructuredOutputCapability as ja, toProviderError as jc, IRemoteExecutorConfig as ji, TActionResponse as jl, IEventEmitterMetricsSnapshot as jn, PluginPriority as jo, TTimerId as jr, TOOL_SEARCH_TOOL_NAME as js, IHierarchicalOrchestrationSpec as jt, IContextWindowState as k, isImageGenerationProvider as ka, classifyProviderFailure as kc, IExecutorStreamTerminalEvent as ki, IActionRequest as kl, IEventEmitterPluginOptions as kn, IPluginStats as ko, startPeriodicTask as kr, TExecutionEventName as ks, IGroupChatOrchestrationSpec as kt, lookupModelPrice as l, IMediaProviderConfig as la, TToolChoice as lc, projectToolSchema as li, ITextMessagePart as ll, DEFAULT_TOOL_RESULT_WARNING_CHARS as ln, ILoggerOptions as lo, getSchemaTypeName as lr, generateSpanId as ls, TToolRiskClass as lt, formatTokenCount as m, IImageComposeRequest as ma, TJSONSchemaEnum as mc, ICredentialStore as mi, TMessageState as ml, ToolResultAdmissionError as mn, getGlobalLogLevel as mo, zodToJsonSchema as mr, IEventObjectValue as ms, TResolveInWorkspace as mt, decodeHookVerdict as n, selectAction as na, ITokenUsageWithCacheRead as nc, PERMISSIVE_TOOL_SCHEMA_PROFILE as ni, resolveModelCapability as nl, AgentFactory as nn, IAbstractTool as no, resolveMediaProviderConfig as nr, DEFAULT_ABSTRACT_EVENT_SERVICE as ns, toolNameMatches as nt, MODEL_PRICES as o, IAIProviderManager as oa, TProviderNativeRawPayloadKind as oc, TToolSchemaProjectionOutcome as oi, IHistoryEntry as ol, IAgentFactoryOptions as on, TToolExecutionFunction as oo, IStructuredOutputResolutionInput as or, bindEventServiceOwner as os, isProtectedPath as ot, findModelDefinition as p, isMediaProviderDefinition as pa, IToolSchema as pc, ICredentialKey as pi, IUserMessage as pl, TToolResultAdmissionErrorCode as pn, createLogger as po, closeObjectSchemas as pr, IEventContext as ps, IReadOnlyCommandContext as pt, TToolArgs as q, TProviderModelLifecycle as qa, TErrorExternalInput as qc, getToolEstimatedDuration as qi, createSystemMessage as qn, TOOL_PERMISSION_EVENTS as qo, AbstractPlugin as qr, IZodSchemaDef as qs, collectAssistantUsageMetadata as qt, GuardrailExecutor as r, textAction as ra, TProviderConfigValue as rc, STRICT_TOOL_SCHEMA_PROFILE as ri, TProviderModelCapability as rl, AgentTemplates as rn, IAbstractToolOptions as ro, TEnvResolver as rr, DefaultEventService as rs, ICriticalPathContext as rt, calculateModelCost as s, IToolManager as sa, TProviderOptionValueBase as sc, TToolSchemaProjectionProfileBase as si, IInlineImageMessagePart as sl, IAgentLifecycleEvents as sn, ConsoleLogger as so, resolveStructuredOutputCapability as sr, bindWithOwnerPath as ss, removesCriticalPath as st, isEnforcing as t, multiSelectAction as ta, ITokenUsage as tc, PARAMETER_SCHEMA_KEYWORDS as ti, resolveModelCapabilities as tl, runRegistryTransaction as tn, IAgentTemplate as to, createVideoProviderFromDefinition as tr, AbstractEventService as ts, requiresFreshApproval as tt, DEFAULT_CONTEXT_WINDOW as u, IMediaProviderCredentialRequirement as ua, getProviderCapabilities as uc, AbstractManager as ui, IToolCall as ul, IToolResultAdmissionOptions as un, IUtilLogEntry as uo, hasValidationConstraints as ur, isDefaultEventService as us, UNCLASSIFIED_TOOL_FALLBACK as ut, registerModelMetadata as v, IImageGenerationResult as va, IProviderCapabilities as vc, IStats as vi, TUniversalMessageRole as vl, IDestroyResult as vn, setGlobalLoggerSink as vo, providerCallSpanId as vr, IOwnerPathSegment as vs, TPermissionDecision$1 as vt, IContextTokenEstimateOptions as w, IVideoGenerationRequest as wa, createDefaultProviderCapabilities as wc, IEventHistorySnapshot as wi, isToolMessage as wl, assertResidentToolRemains as wn, IPluginErrorContext as wo, IPlatformShell as wr, EVENT_EMITTER_EVENTS as ws, withEventEmission as wt, readTokenUsageFromMetadata as x, IProviderMediaError as xa, IProviderNativeWebToolCapability as xc, ITerminalOutput as xi, isAssistantMessage as xl, TOOL_EVENTS as xn, IPluginContext as xo, toolTraceContextFor as xr, TEventListener as xs, TTrustLevel as xt, IMessageTokenUsage as y, IInlineImageInputSource as ya, IProviderFunctionCallingCapability as yc, ISession as yi, chatEntryToMessage as yl, EXECUTION_EVENTS as yn, IPlugin as yo, spanIdFromMintedId as yr, IToolEventData as ys, TPermissionMode as yt, IPermissionPolicyContext as z, IProviderModelCatalogEntry as za, PluginError as zc, IStreamingChunk as zi, TConfigValue as zl, formatEnvReference as zn, TToolExecutor as zo, validateUserInput as zr, TStructuredOutputSchema as zs, TOrchestrationPrimitive as zt };
|
|
6967
|
+
//# sourceMappingURL=index-D1_Mak-n.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-D1_Mak-n.d.cts","names":[],"sources":["../../src/interfaces/types.ts","../../src/interfaces/cache.ts","../../src/interfaces/interaction.ts","../../src/interfaces/messages.ts","../../src/interfaces/provider-model-capability-kind.ts","../../src/interfaces/model-capability.ts","../../src/interfaces/role-model.ts","../../src/utils/errors.ts","../../src/utils/provider-failure.ts","../../src/interfaces/model-fallback.ts","../../src/interfaces/provider-capabilities.ts","../../src/interfaces/provider-specific-options.ts","../../src/interfaces/tool-schema.ts","../../src/interfaces/provider.ts","../../src/interfaces/response-format.ts","../../src/schema/zod-schema-types.ts","../../src/schema/structured-output.ts","../../src/interfaces/run-options.ts","../../src/interfaces/tool-search.ts","../../src/plugins/event-emitter/types.ts","../../src/abstracts/abstract-module-types.ts","../../src/event-service/interfaces.ts","../../src/event-service/event-service.ts","../../src/event-service/task-events.ts","../../src/event-service/user-events.ts","../../src/event-service/span-events.ts","../../src/interfaces/tool.ts","../../src/abstracts/abstract-plugin-types.ts","../../src/utils/logger.ts","../../src/abstracts/abstract-tool-types.ts","../../src/interfaces/agent.ts","../../src/interfaces/provider-definition.ts","../../src/interfaces/structured-output-capability.ts","../../src/interfaces/media-provider.ts","../../src/interfaces/media-provider-definition.ts","../../src/interfaces/manager.ts","../../src/interfaces/tool-integration.ts","../../src/interfaces/interaction-builders.ts","../../src/interfaces/progress-reporting.ts","../../src/interfaces/service.ts","../../src/interfaces/executor.ts","../../src/interfaces/history-module.ts","../../src/interfaces/terminal-output.ts","../../src/interfaces/session.ts","../../src/interfaces/file-system.ts","../../src/interfaces/credential-store.ts","../../src/abstracts/abstract-agent.ts","../../src/abstracts/abstract-manager.ts","../../src/schema/project-tool-schema.ts","../../src/abstracts/abstract-ai-provider.ts","../../src/abstracts/abstract-plugin.ts","../../src/abstracts/abstract-executor.ts","../../src/abstracts/abstract-tool.ts","../../src/utils/abort-classification.ts","../../src/utils/message-converter.ts","../../src/utils/validation.ts","../../src/utils/error-utils.ts","../../src/utils/timer-types.ts","../../src/utils/periodic-task.ts","../../src/utils/platform-shell.ts","../../src/utils/trace-context.ts","../../src/schema/zod-to-json-schema.ts","../../src/schema/close-object-schemas.ts","../../src/schema/zod-schema-inspect.ts","../../src/services/structured-output-transport.ts","../../src/utils/env-resolver.ts","../../src/providers/media-provider-factory.ts","../../src/providers/provider-factory.ts","../../src/managers/conversation-history-types.ts","../../src/managers/conversation-store.ts","../../src/managers/conversation-message-factory.ts","../../src/managers/conversation-history-manager.ts","../../src/executors/local-executor.ts","../../src/utils/env-ref.ts","../../src/utils/bounded-output.ts","../../src/utils/shell-argument.ts","../../src/plugins/event-emitter/metrics.ts","../../src/plugins/event-emitter/plugin-types.ts","../../src/plugins/event-emitter-plugin.ts","../../src/tool-registry/tool-registry.ts","../../src/tool-registry/function-tool.ts","../../src/tool-registry/tool-residency.ts","../../src/core/robota-types.ts","../../src/core/robota-base.ts","../../src/managers/ai-provider-manager.ts","../../src/managers/tool-manager.ts","../../src/core/robota-config-manager.ts","../../src/services/tool-execution-constants.ts","../../src/services/execution-constants.ts","../../src/core/robota-lifecycle.ts","../../src/core/robota.ts","../../src/core/tool-result-admission.ts","../../src/managers/agent-factory-helpers.ts","../../src/managers/agent-templates.ts","../../src/managers/agent-factory.ts","../../src/managers/registry-transaction.ts","../../src/services/execution-usage.ts","../../src/services/history-module.ts","../../src/services/message-origin.ts","../../src/agents/constants.ts","../../src/orchestration/orchestration-contracts.ts","../../src/orchestration/orchestration-events.ts","../../src/utils/execution-proxy-types.ts","../../src/utils/execution-proxy.ts","../../src/permissions/types.ts","../../src/permissions/read-only-commands.ts","../../src/permissions/argument-matchers.ts","../../src/permissions/permission-mode.ts","../../src/permissions/permission-safeguards.ts","../../src/permissions/permission-gate.ts","../../src/permissions/permission-policy.ts","../../src/permissions/pattern-validation.ts","../../src/permissions/tool-list-patterns.ts","../../src/permissions/command-segments.ts","../../src/permissions/auto-mode-rules.ts","../../src/context/types.ts","../../src/context/estimation.ts","../../src/context/token-usage.ts","../../src/context/models.ts","../../src/context/model-pricing.ts","../../src/hooks/response-protocol.ts","../../src/hooks/hook-runner.ts","../../src/hooks/executors/guardrail-executor.ts","../../src/hooks/verdict-decoder.ts","../../src/hooks/enforcement-policy.ts"],"mappings":"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"}
|
|
@@ -871,6 +871,19 @@ interface ITokenUsage {
|
|
|
871
871
|
completionTokens: number;
|
|
872
872
|
totalTokens: number;
|
|
873
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* The usage triple ({@link ITokenUsage}) plus the prompt-cache read a provider reported for it.
|
|
876
|
+
*
|
|
877
|
+
* Derived from the triple rather than widening it: the triple is also the persisted and wired usage
|
|
878
|
+
* shape (background-task results, subagent IPC), whose decoders declare exactly its three keys.
|
|
879
|
+
*/
|
|
880
|
+
interface ITokenUsageWithCacheRead extends ITokenUsage {
|
|
881
|
+
/**
|
|
882
|
+
* The part of `promptTokens` the provider served from its prompt cache — a subset of
|
|
883
|
+
* `promptTokens`, not an addition to it. Present only when the provider reported it.
|
|
884
|
+
*/
|
|
885
|
+
cacheReadTokens?: number;
|
|
886
|
+
}
|
|
874
887
|
/**
|
|
875
888
|
* Raw provider response interface
|
|
876
889
|
*/
|
|
@@ -1285,6 +1298,12 @@ interface IRunOptions {
|
|
|
1285
1298
|
* per turn — one session serves the operator and any peer addressing it. Never authorization.
|
|
1286
1299
|
*/
|
|
1287
1300
|
driverId?: string;
|
|
1301
|
+
/**
|
|
1302
|
+
* Where this run's turn came from (a peer's message, an external event, an agent wake-up), stored
|
|
1303
|
+
* beside `driverId` on the user message so a transcript carried elsewhere still says it. Display
|
|
1304
|
+
* only, like `driverId`; absent for the operator's own turn.
|
|
1305
|
+
*/
|
|
1306
|
+
turnSource?: string;
|
|
1288
1307
|
metadata?: TMetadata;
|
|
1289
1308
|
/**
|
|
1290
1309
|
* Run-scoped EPHEMERAL system context (SELFHOST-008 P3). A transient system-role block included in THIS
|
|
@@ -1299,7 +1318,12 @@ interface IRunOptions {
|
|
|
1299
1318
|
* only an adapter whose origin is listed sends it. Never recorded in execution events.
|
|
1300
1319
|
*/
|
|
1301
1320
|
traceContext?: IRunTraceContext;
|
|
1302
|
-
/**
|
|
1321
|
+
/**
|
|
1322
|
+
* AbortSignal for cancelling execution. Aborting an in-flight run does not throw: `run()` resolves
|
|
1323
|
+
* (and `runStream()` returns) the last assistant text the turn committed before the abort, possibly
|
|
1324
|
+
* `''`; a reply cut off mid-stream is kept in history with `state: 'interrupted'`. Read
|
|
1325
|
+
* `signal.aborted` to tell an interrupted run from a completed one.
|
|
1326
|
+
*/
|
|
1303
1327
|
signal?: AbortSignal;
|
|
1304
1328
|
/** Join an aborted/timed-out provider call before completing; an uncooperative call may remain pending. */
|
|
1305
1329
|
awaitProviderSettlement?: boolean;
|
|
@@ -1322,7 +1346,10 @@ interface IRunOptions {
|
|
|
1322
1346
|
* Treat a turn that ends in tool calls (no trailing text) as a valid completion instead of
|
|
1323
1347
|
* forcing one extra provider call to generate a summary (CORE-011). For decision-agent patterns
|
|
1324
1348
|
* (router/orchestrator/classifier) the tool call IS the answer — this removes the one-call tax.
|
|
1325
|
-
* The
|
|
1349
|
+
* The summary call is the one made when the round cap ends the loop on a tool round; before the cap
|
|
1350
|
+
* the model is called again after tool results as usual, so a decision agent sets
|
|
1351
|
+
* `maxExecutionRounds` too (e.g. `1`). The run resolves with the turn's text, or `''` when it
|
|
1352
|
+
* produced none; consumers read the outcome from the tool results.
|
|
1326
1353
|
*/
|
|
1327
1354
|
allowToolOnlyCompletion?: boolean;
|
|
1328
1355
|
/**
|
|
@@ -1906,6 +1933,14 @@ interface IToolExecutionContext {
|
|
|
1906
1933
|
* Owner-bound instances must not be layered across different owners.
|
|
1907
1934
|
*/
|
|
1908
1935
|
baseEventService?: IEventService;
|
|
1936
|
+
/**
|
|
1937
|
+
* The service this call's caller would give the tool with `setEventService`, carried with the
|
|
1938
|
+
* call instead. One tool instance can serve several agents, and the service set on it is
|
|
1939
|
+
* whichever agent set one last; a tool that emits events of its own (the `FunctionTool` span)
|
|
1940
|
+
* emits them here when present, so they reach the agent that made the call. The no-op default
|
|
1941
|
+
* service means that caller wants none.
|
|
1942
|
+
*/
|
|
1943
|
+
instanceEventService?: IEventService;
|
|
1909
1944
|
/**
|
|
1910
1945
|
* Injected "ask the user" port (CMD-004). Present when an interactive renderer is attached, letting
|
|
1911
1946
|
* a tool solicit a structured answer from the user (the model-issued question seam consumed by
|
|
@@ -4720,7 +4755,7 @@ declare class ConversationHistory {
|
|
|
4720
4755
|
* @example
|
|
4721
4756
|
* ```typescript
|
|
4722
4757
|
* import { LocalExecutor } from '@robota-sdk/agent-core';
|
|
4723
|
-
* import { OpenAIProvider } from '@robota-sdk/agent-provider
|
|
4758
|
+
* import { OpenAIProvider } from '@robota-sdk/agent-provider-openai';
|
|
4724
4759
|
*
|
|
4725
4760
|
* const executor = new LocalExecutor();
|
|
4726
4761
|
* executor.registerProvider('openai', new OpenAIProvider({ apiKey: 'sk-...' }));
|
|
@@ -5037,6 +5072,7 @@ declare class FunctionTool implements IFunctionTool {
|
|
|
5037
5072
|
* Set EventService for post-construction injection.
|
|
5038
5073
|
* Accepts EventService as-is without transformation.
|
|
5039
5074
|
* Caller is responsible for providing properly configured EventService.
|
|
5075
|
+
* A call whose context carries `instanceEventService` emits there instead.
|
|
5040
5076
|
*/
|
|
5041
5077
|
setEventService(eventService: IEventService | undefined): void;
|
|
5042
5078
|
/**
|
|
@@ -5847,19 +5883,43 @@ declare function runRegistryTransaction(steps: readonly IRegistryTransactionStep
|
|
|
5847
5883
|
* same triple by definition, so it is derived rather than re-declared.
|
|
5848
5884
|
*/
|
|
5849
5885
|
type ISessionUsageTotals = ITokenUsage;
|
|
5886
|
+
/**
|
|
5887
|
+
* Sum the token usage the provider reported on the assistant messages of `messages`.
|
|
5888
|
+
*
|
|
5889
|
+
* `promptTokens` sums each message's input tokens, `completionTokens` its output tokens, and
|
|
5890
|
+
* `totalTokens` is their sum — which can differ from the totals providers reported (a thinking
|
|
5891
|
+
* model's total also counts thought tokens). `cacheReadTokens` — the part of `promptTokens` served
|
|
5892
|
+
* from the provider's prompt cache — is present only when at least one message reported it, and is a
|
|
5893
|
+
* lower bound when only some did. Returns undefined when no assistant message reported usage.
|
|
5894
|
+
*
|
|
5895
|
+
* One run's usage (every provider call it made, tool rounds and a forced summary included):
|
|
5896
|
+
*
|
|
5897
|
+
* ```ts
|
|
5898
|
+
* const before = agent.getHistory().length;
|
|
5899
|
+
* await agent.run(prompt);
|
|
5900
|
+
* const usage = sumMessagesUsage(agent.getHistory().slice(before));
|
|
5901
|
+
* ```
|
|
5902
|
+
*/
|
|
5903
|
+
declare function sumMessagesUsage(messages: readonly TUniversalMessage[]): ITokenUsageWithCacheRead | undefined;
|
|
5850
5904
|
/**
|
|
5851
5905
|
* ANALYTICS-001 (Phase 2): sum assistant token usage across a history timeline — used to capture a
|
|
5852
5906
|
* subagent / background task's total usage so it can be attributed to its source in the parent log.
|
|
5853
5907
|
* Returns undefined when no usage was reported (so callers can skip recording an empty entry).
|
|
5908
|
+
*
|
|
5909
|
+
* The result is exactly the usage triple: it is persisted as a background task's usage, whose record
|
|
5910
|
+
* declares no other key. Use {@link sumMessagesUsage} for the prompt-cache read as well.
|
|
5854
5911
|
*/
|
|
5855
5912
|
declare function sumHistoryUsage(history: readonly IHistoryEntry[]): ISessionUsageTotals | undefined;
|
|
5856
5913
|
interface IAssistantUsageMetadata {
|
|
5857
5914
|
inputTokens: number;
|
|
5858
5915
|
outputTokens: number;
|
|
5916
|
+
/** The part of `inputTokens` served from the provider's prompt cache, when it was reported. */
|
|
5917
|
+
cacheReadTokens?: number;
|
|
5859
5918
|
usage: {
|
|
5860
5919
|
totalTokens: number;
|
|
5861
5920
|
inputTokens: number;
|
|
5862
5921
|
outputTokens: number;
|
|
5922
|
+
cacheReadTokens?: number;
|
|
5863
5923
|
};
|
|
5864
5924
|
}
|
|
5865
5925
|
declare function collectAssistantUsageMetadata(message: TUniversalMessage): IAssistantUsageMetadata | undefined;
|
|
@@ -6490,6 +6550,11 @@ interface IToolPermissionProfile {
|
|
|
6490
6550
|
aliases?: readonly string[];
|
|
6491
6551
|
/** The tool answers the peer whose message started the current turn; it exists only there. */
|
|
6492
6552
|
repliesToPeer?: boolean;
|
|
6553
|
+
/**
|
|
6554
|
+
* The tool acts for the operator in a way a peer's message must not set off; it does not exist in
|
|
6555
|
+
* a turn a peer's message started.
|
|
6556
|
+
*/
|
|
6557
|
+
notInPeerTurn?: boolean;
|
|
6493
6558
|
}
|
|
6494
6559
|
/**
|
|
6495
6560
|
* Declare how a tool is treated by the permission system. CORE-030.
|
|
@@ -6677,6 +6742,10 @@ interface IContextTokenUsage {
|
|
|
6677
6742
|
inputTokens: number;
|
|
6678
6743
|
outputTokens: number;
|
|
6679
6744
|
cacheCreationTokens?: number;
|
|
6745
|
+
/**
|
|
6746
|
+
* Anthropic-style: cache reads counted in addition to `inputTokens`. Not the message-usage
|
|
6747
|
+
* `cacheReadTokens` (`IMessageTokenUsage`), which is a part of the input.
|
|
6748
|
+
*/
|
|
6680
6749
|
cacheReadTokens?: number;
|
|
6681
6750
|
}
|
|
6682
6751
|
/** Context window state snapshot */
|
|
@@ -6716,6 +6785,11 @@ interface IMessageTokenUsage {
|
|
|
6716
6785
|
readonly inputTokens: number;
|
|
6717
6786
|
readonly outputTokens: number;
|
|
6718
6787
|
readonly totalTokens?: number;
|
|
6788
|
+
/**
|
|
6789
|
+
* The part of `inputTokens` the provider served from its prompt cache (a subset of `inputTokens`).
|
|
6790
|
+
* Present only when the provider reported it.
|
|
6791
|
+
*/
|
|
6792
|
+
readonly cacheReadTokens?: number;
|
|
6719
6793
|
}
|
|
6720
6794
|
/** Read normalized provider usage from a universal message when present. */
|
|
6721
6795
|
declare function readTokenUsageFromMessage(message: TUniversalMessage): IMessageTokenUsage | undefined;
|
|
@@ -6889,5 +6963,5 @@ declare function decodeHookVerdict(raw: string, source: THookDefinition['type'],
|
|
|
6889
6963
|
/** Does a hook that reached no verdict block at this event? */
|
|
6890
6964
|
declare function isEnforcing(event: THookEvent): boolean;
|
|
6891
6965
|
//#endregion
|
|
6892
|
-
export { parseParameterRule as $, IAgentConfig as $a, resolveModelCapabilities as $c, isConfirmed as $i, createImageProviderFromDefinition as $n, TASK_EVENT_PREFIX as $o, IToolSchemaProjectionProfile as $r, IRawProviderResponse as $s, lifecycleOf as $t, allowRulesForAutoMode as A, IProviderStructuredOutputCapability as Aa, AuthenticationError as Ac, IRemoteExecutorConfig as Ai, ICacheEntry as Al, IEventEmitterMetricsSnapshot as An, PluginPriority as Ao, TTimerId as Ar, TOOL_SEARCH_TOOL_NAME as As, IHandoffOrchestrationSpec as At, IPermissionPolicyProjection as B, IProviderProfileConfig as Ba, RobotaError as Bc, TConversationContextMetadata as Bi, TMetadata as Bl, isEnvReference as Bn, ISpanCompletionEventData as Bo, TMessageConverterRegistry as Br, normalizeStructuredOutput as Bs, AGENT_EVENTS as Bt, IContextTokenEstimate as C, IVideoGenerationRequest as Ca, IModelFallbackNotice as Cc, IEventHistorySnapshot as Ci, isUserMessage as Cl, assertResidentToolRemains as Cn, IPluginErrorContext as Co, IPlatformShell as Cr, EVENT_EMITTER_EVENTS as Cs, createExecutionProxy as Ct, estimateToolSchemaTokens as D, TProviderMediaResult as Da, classifyProviderFailure as Dc, IExecutorStreamMessageEvent as Di, IActionRequest as Dl, IEventEmitterHierarchicalEventData as Dn, IPluginOptions as Do, resolvePlatformShell as Dr, TEventName as Ds, ORCHESTRATION_EVENT_PREFIX as Dt, estimateSerializedContextTokens as E, TImageInputSource as Ea, TProviderFailureReason as Ec, IExecutorChatResult as Ei, IActionOption as El, EventEmitterPlugin as En, IPluginHooks as Eo, UnsupportedShellError as Er, TEventEmitterListener as Es, ORCHESTRATION_EVENTS as Et, IPermissionPatternProblem as F, IProviderDefinitionConfig as Fa, ModelNotAvailableError as Fc, IConversationResponse as Fi, TComplexConfigValue as Fl, TOutputRetention as Fn, IToolExecutionResult as Fo, validateApiKey as Fr, TExecutionEventData as Fs, IOrchestrationStep as Ft, IToolPermissionArgument as G, TProviderModelCatalogStatus as Ga, TErrorExternalInput as Gc, TToolProgressCallback as Gi, createAssistantMessage as Gn, TOOL_BODY_EVENTS as Go, AbstractExecutor as Gr, IZodSchema as Gs, IAssistantUsageMetadata as Gt, IParameterRule as H, IProviderSetupHelpLink as Ha, StorageError as Hc, TToolExecutionParameters as Hi, TToolParameters as Hl, IAIProviderInstance as Hn, PROVIDER_FALLBACK_EVENTS as Ho, TProviderMessage as Hr, validateAgainstJsonSchema as Hs, peerDriverOf as Ht, findInvalidPermissionPatterns as I, IProviderEndpoint as Ia, NetworkError as Ic, IConversationService as Ii, TConfigData as Il, createBoundedOutput as In, IToolRegistry as Io, validateModelName as Ir, IJsonSchemaOutput as Is, IOrchestrationStepResult as It, clearRegisteredToolProfiles as J, TProviderSetupHelpLinkKind as Ja, IModelRef as Jc, isProgressReportingTool as Ji, createUserMessage as Jn, readModelFallbackNotice as Jo, IExecutorAwareProviderConfig as Jr, IAIProvider as Js, sumHistoryUsage as Jt, IToolPermissionProfile as K, TProviderModelLifecycle as Ka, ToolExecutionError as Kc, getToolEstimatedDuration as Ki, createSystemMessage as Kn, TOOL_PERMISSION_EVENTS as Ko, AbstractPlugin as Kr, IZodSchemaDef as Ks, ISessionUsageTotals as Kt, findPermissionPatternWarnings as L, IProviderModelCatalog as La, PluginError as Lc, IConversationServiceOptions as Li, TConfigValue as Ll, ENV_REFERENCE_PREFIX as Ln, IToolResult as Lo, validateProviderName as Lr, IStructuredOutputSpec as Ls, IParallelOrchestrationSpec as Lt, splitCommandSegments as M, TStructuredOutputProvenance as Ma, CircuitBreakerOpenError as Mc, TExecutorStreamEvent as Mi, ICacheOptions as Ml, shellArgumentForDisplay as Mn, IParameterValidationResult as Mo, ISimpleValidationResult as Mr, TToolSearchSetting as Ms, IOrchestrationDelegation as Mt, applyPresetToolLists as N, IProviderCredentialRequirement as Na, ConfigurationError as Nc, IContextOptions as Ni, ICacheStats as Nl, IBoundedOutput as Nn, ITool as No, Validator as Nr, IRunOptions as Ns, IOrchestrationEventData as Nt, IContextTokenUsage as O, isImageGenerationProvider as Oa, readProviderFailureDetails as Oc, IExecutorStreamTerminalEvent as Oi, IUserInteraction as Ol, IEventEmitterPluginOptions as On, IPluginStats as Oo, startPeriodicTask as Or, TExecutionEventName as Os, TOrchestrationEvent as Ot, toolNamesToPatterns as P, IProviderDefinition as Pa, IProviderFailureDetails as Pc, IConversationContext as Pi, ICacheStorage as Pl, IBoundedOutputOptions as Pn, IToolExecutionContext as Po, validateAgentConfig as Pr, TExecutionEventCallback as Ps, IOrchestrationRunResult as Pt, matchesAnyPattern as Q, IAgent as Qa, modelDeclaresCapability as Qc, confirmAction as Qi, IMediaProviderOverrides as Qn, TASK_EVENTS as Qo, IToolSchemaProjectionChange as Qr, IProviderRequest as Qs, isRegistryTransactionError as Qt, validatePermissionPattern as R, IProviderModelCatalogEntry as Ra, ProviderError as Rc, IStreamingChunk as Ri, TContextData as Rl, formatEnvReference as Rn, TToolExecutor as Ro, validateUserInput as Rr, TStructuredOutputSchema as Rs, ISequentialOrchestrationSpec as Rt, CONTEXT_ESTIMATE_CHARS_PER_TOKEN as S, IVideoGenerationProvider as Sa, createDefaultProviderCapabilities as Sc, IEventHistoryRecord as Si, isToolMessage as Sl, DEFERRED_WITHOUT_LOADER_MESSAGE as Sn, IPluginData as So, traceHeadersFor as Sr, TEventUniversalValue as Ss, ExecutionProxy as St, estimateContextTokensFromMessages as T, IVideoJobSnapshot as Ta, IProviderFailureClassification as Tc, IExecutor as Ti, IActionDefault as Tl, ToolRegistry as Tn, IPluginExecutionResult as To, TShellKind as Tr, IEventEmitterPlugin as Ts, IExecutionProxyConfig as Tt, IPermissionEvaluationContext as U, IProviderSetupStepDefinition as Ua, StructuredOutputError as Uc, IProgressReportingTool as Ui, TypeUtils as Ul, LocalExecutor as Un, SPAN_EVENTS as Uo, isAbortFailure as Ur, ISchemaConversionOptions as Us, printablePeerDriver as Ut, projectPermissionPolicy as V, IProviderProfileDefaults as Va, SameToolInputLoopError as Vc, TResponseMetadata as Vi, TMetadataValue as Vl, resolveEnvReference as Vn, PROVIDER_CALL_EVENTS as Vo, TMessageFormatConverter as Vr, parseStructuredResponseText as Vs, AGENT_EVENT_PREFIX as Vt, IPermissionLists as W, TProviderCredentialField as Wa, TErrorContextData as Wc, IToolExecutionStep as Wi, ConversationHistory as Wn, SPAN_EVENT_PREFIX as Wo, AbstractTool as Wr, IZodParseResult as Ws, EventHistoryModule as Wt, getToolPermissionProfile as X, formatSupportedProviderTypes as Xa, IModelCapabilityDeviation as Xc, CONFIRM_NO as Xi, createProviderFromConfig as Xn, USER_EVENTS as Xo, TProviderLoggingData as Xr, IProviderNativeRawPayloadEvent as Xs, IRegistryTransactionError as Xt, evaluatePermission as Y, findProviderDefinition as Ya, TRoleModelMap as Yc, setToolProgressCallback as Yi, ConversationStore as Yn, TUserEvent as Yo, IProviderRuntimeConfig as Yr, IChatOptions as Ys, IRegistryOwnedLifecycle as Yt, isToolDeniedOutright as Z, getProviderCredentialRequirement as Za, IProviderCapabilityTable as Zc, CONFIRM_YES as Zi, normalizeProviderConfig as Zn, USER_EVENT_PREFIX as Zo, IToolSchemaProjection as Zr, IProviderOptions as Zs, IRegistryTransactionStep as Zt, getModelName as _, IImageGenerationResult as _a, IProviderFunctionCallingCapability as _c, IStats as _i, chatEntryToMessage as _l, IDestroyResult as _n, setGlobalLoggerSink as _o, providerCallSpanId as _r, IOwnerPathSegment as _s, TBackgroundPermissionPolicy as _t, IModelPrice as a, IAIProviderManager as aa, TProviderOptionValueBase as ac, TToolSchemaProjectionOutcome as ai, IInlineImageMessagePart as al, IAgentFactoryOptions as an, TToolExecutionFunction as ao, IStructuredOutputResolutionInput as ar, bindEventServiceOwner as as, PROTECTED_FILE_NAMES as at, readTokenUsageFromMessage as b, IProviderMediaError as ba, IProviderNativeWebToolRequest as bc, ITerminalOutput as bi, isChatEntry as bl, TOOL_EVENTS as bn, IPluginContext as bo, toolTraceContextFor as br, TEventListener as bs, TRUST_TO_MODE as bt, estimateBlendedCostPer1000 as c, IMediaProviderConfig as ca, getProviderCapabilities as cc, projectToolSchema as ci, IToolCall as cl, DEFAULT_TOOL_RESULT_WARNING_CHARS as cn, ILoggerOptions as co, getSchemaTypeName as cr, generateSpanId as cs, RISK_CLASS_POLICY as ct, DEFAULT_MAX_OUTPUT as d, findMediaProviderDefinition as da, IToolSchema as dc, AbstractAgent as di, IUserMessage as dl, MAX_TOOL_RESULT_CHARS as dn, TUtilLogLevel as do, ISchemaClosureOptions as dr, IBaseEventData as ds, TArgumentKind as dt, multiSelectAction as ea, ITokenUsage as ec, PARAMETER_SCHEMA_KEYWORDS as ei, resolveModelCapability as el, runRegistryTransaction as en, IAgentTemplate as eo, createVideoProviderFromDefinition as er, AbstractEventService as es, registerToolPermissionProfile as et, IModelDefinition as f, isMediaProviderDefinition as fa, TJSONSchemaEnum as fc, ICredentialKey as fi, TMessageState as fl, TToolResultAdmissionErrorCode as fn, createLogger as fo, closeObjectSchemas as fr, IEventContext as fs, TMatchDirection as ft, getModelMaxOutput as g, IImageGenerationRequest as ga, IProviderCapabilities as gc, IFileSystemAsync as gi, TUniversalMessageRole as gl, Robota as gn, setGlobalLogLevel as go, outboundTraceContextFor as gr, IExecutionEventData as gs, DEFAULT_BACKGROUND_PERMISSION_POLICY as gt, getModelContextWindow as h, IImageGenerationProvider as ha, IProviderSpecificOptions as hc, IFileSystem as hi, TUniversalMessagePart as hl, wasToolResultAdmitted as hn, logger as ho, isMintedSpanId as hr, IEventServiceOwnerBinding as hs, isReadOnlyCommandLine as ht, runHooks as i, IToolFactory as ia, TProviderNativeRawPayloadKind as ic, TOOL_SCHEMA_PROJECTION_MAX_NODES as ii, IHistoryEntry as il, IAgentCreationStats as in, IToolWithEventService as io, processEnvResolver as ir, StructuredEventService as is, PROTECTED_DIRECTORY_NAMES as it, isBroadExecutionAllowRule as j, TStructuredOutputMechanism as ja, CacheIntegrityError as jc, IStreamExecutionRequest as ji, ICacheKey as jl, InMemoryEventEmitterMetrics as jn, IFunctionTool as jo, ErrorUtils as jr, TToolSearchMode as js, IHierarchicalOrchestrationSpec as jt, IContextWindowState as k, isVideoGenerationProvider as ka, toProviderError as kc, ILocalExecutorConfig as ki, TActionResponse as kl, IEventEmitterMetrics as kn, PluginCategory as ko, stopPeriodicTask as kr, IDeferredToolCatalog as ks, IGroupChatOrchestrationSpec as kt, lookupModelPrice as l, IMediaProviderCredentialRequirement as la, IObjectParameterSchema as lc, AbstractManager as li, IToolMessage as ll, IToolResultAdmissionOptions as ln, IUtilLogEntry as lo, hasValidationConstraints as lr, isDefaultEventService as ls, TToolRiskClass as lt, formatTokenCount as m, IImageEditRequest as ma, TParameterDefaultValue as mc, IDirent as mi, TUniversalMessageMetadata as ml, admitToolResult as mn, getGlobalLoggerSink as mo, buildTraceparent as mr, IEventService as ms, TResolveInWorkspace as mt, decodeHookVerdict as n, textAction as na, TProviderNativeRawPayload as nc, STRICT_TOOL_SCHEMA_PROFILE as ni, IAssistantMessage as nl, AgentTemplates as nn, IAbstractToolOptions as no, TEnvResolver as nr, DefaultEventService as ns, toolNameMatches as nt, MODEL_PRICES as o, IToolManager as oa, TTextDeltaCallback as oc, TToolSchemaProjectionProfileBase as oi, ISystemMessage as ol, IAgentLifecycleEvents as on, ConsoleLogger as oo, resolveStructuredOutputCapability as or, bindWithOwnerPath as os, isProtectedPath as ot, findModelDefinition as p, IImageComposeRequest as pa, TJSONSchemaKind as pc, ICredentialStore as pi, TUniversalMessage as pl, ToolResultAdmissionError as pn, getGlobalLogLevel as po, zodToJsonSchema as pr, IEventObjectValue as ps, IReadOnlyCommandContext as pt, TToolArgs as q, TProviderSetupField as qa, ValidationError as qc, getToolExecutionSteps as qi, createToolMessage as qn, TSpanEvent as qo, AbstractAIProvider as qr, IResponseFormatConfig as qs, collectAssistantUsageMetadata as qt, GuardrailExecutor as r, IOpenAPIToolConfig as ra, TProviderNativeRawPayloadCallback as rc, TOOL_SCHEMA_PROJECTION_MAX_DEPTH as ri, IBaseMessage as rl, ITemplateApplicationResult as rn, IToolContract as ro, createRecordEnvResolver as rr, ObservableEventService as rs, ICriticalPathContext as rt, calculateModelCost as s, TManagerToolParameters as sa, TToolChoice as sc, hashToolSchema as si, ITextMessagePart as sl, DEFAULT_TOOL_RESULT_HARD_CHARS as sn, ILogger as so, extractEnumValues as sr, composeEventName as ss, removesCriticalPath as st, isEnforcing as t, selectAction as ta, TProviderConfigValue as tc, PERMISSIVE_TOOL_SCHEMA_PROFILE as ti, TProviderModelCapability as tl, AgentFactory as tn, IAbstractTool as to, resolveMediaProviderConfig as tr, DEFAULT_ABSTRACT_EVENT_SERVICE as ts, requiresFreshApproval as tt, DEFAULT_CONTEXT_WINDOW as u, IMediaProviderDefinition as ua, IParameterSchema as uc, IManagerLifecycleOptions as ui, IUriImageMessagePart as ul, IToolResultSpillStore as un, SilentLogger as uo, ISchemaClosureChange as ur, IAgentEventData as us, UNCLASSIFIED_TOOL_FALLBACK as ut, registerModelMetadata as v, IInlineImageInputSource as va, IProviderNativeWebToolCapabilities as vc, ISession as vi, getMessagesForAPI as vl, EXECUTION_EVENTS as vn, IPlugin as vo, spanIdFromMintedId as vr, IToolEventData as vs, TPermissionDecision$1 as vt, IContextTokenEstimateOptions as w, IVideoJobAccepted as wa, TModelFallbackCallback as wc, IChatExecutionRequest as wi, messageToHistoryEntry as wl, FunctionTool as wn, IPluginExecutionContext as wo, IPlatformShellResolutionRequest as wr, IEventEmitterEventData as ws, withEventEmission as wt, readTokenUsageFromMetadata as x, IUriImageInputSource as xa, assertProviderNativeWebToolsAvailable as xc, IEventHistoryModule as xi, isSystemMessage as xl, TOOL_EVENT_PREFIX as xn, IPluginContract as xo, traceEnvFor as xr, TEventLoggerData as xs, TTrustLevel as xt, IMessageTokenUsage as y, IMediaOutputRef as ya, IProviderNativeWebToolCapability as yc, ISpinner as yi, isAssistantMessage as yl, EXECUTION_EVENT_PREFIX as yn, IPluginConfig as yo, subprocessTraceEnvironment as yr, TEventExtensionValue as ys, TPermissionMode as yt, IPermissionPolicyContext as z, IProviderProbeResult as za, RateLimitError as zc, IToolExecutionRequest as zi, TLoggerData as zl, hasUsableSecretReference as zn, TToolMetadata as zo, MessageConverter as zr, TStructuredOutputValidation as zs, TOrchestrationPrimitive as zt };
|
|
6893
|
-
//# sourceMappingURL=index-
|
|
6966
|
+
export { parseParameterRule as $, IAgent as $a, IProviderCapabilityTable as $c, confirmAction as $i, IMediaProviderOverrides as $n, TASK_EVENTS as $o, IToolSchemaProjectionChange as $r, IProviderRequest as $s, isRegistryTransactionError as $t, allowRulesForAutoMode as A, isVideoGenerationProvider as Aa, readProviderFailureDetails as Ac, ILocalExecutorConfig as Ai, IUserInteraction as Al, IEventEmitterMetrics as An, PluginCategory as Ao, stopPeriodicTask as Ar, IDeferredToolCatalog as As, IHandoffOrchestrationSpec as At, IPermissionPolicyProjection as B, IProviderProbeResult as Ba, ProviderError as Bc, IToolExecutionRequest as Bi, TContextData as Bl, hasUsableSecretReference as Bn, TToolMetadata as Bo, MessageConverter as Br, TStructuredOutputValidation as Bs, AGENT_EVENTS as Bt, IContextTokenEstimate as C, IVideoGenerationProvider as Ca, assertProviderNativeWebToolsAvailable as Cc, IEventHistoryRecord as Ci, isSystemMessage as Cl, DEFERRED_WITHOUT_LOADER_MESSAGE as Cn, IPluginData as Co, traceHeadersFor as Cr, TEventUniversalValue as Cs, createExecutionProxy as Ct, estimateToolSchemaTokens as D, TImageInputSource as Da, IProviderFailureClassification as Dc, IExecutorChatResult as Di, IActionDefault as Dl, EventEmitterPlugin as Dn, IPluginHooks as Do, UnsupportedShellError as Dr, TEventEmitterListener as Ds, ORCHESTRATION_EVENT_PREFIX as Dt, estimateSerializedContextTokens as E, IVideoJobSnapshot as Ea, TModelFallbackCallback as Ec, IExecutor as Ei, messageToHistoryEntry as El, ToolRegistry as En, IPluginExecutionResult as Eo, TShellKind as Er, IEventEmitterPlugin as Es, ORCHESTRATION_EVENTS as Et, IPermissionPatternProblem as F, IProviderDefinition as Fa, ConfigurationError as Fc, IConversationContext as Fi, ICacheStats as Fl, IBoundedOutputOptions as Fn, IToolExecutionContext as Fo, validateAgentConfig as Fr, TExecutionEventCallback as Fs, IOrchestrationStep as Ft, IToolPermissionArgument as G, TProviderCredentialField as Ga, StructuredOutputError as Gc, IToolExecutionStep as Gi, TypeUtils as Gl, ConversationHistory as Gn, SPAN_EVENT_PREFIX as Go, AbstractTool as Gr, IZodParseResult as Gs, IAssistantUsageMetadata as Gt, IParameterRule as H, IProviderProfileDefaults as Ha, RobotaError as Hc, TResponseMetadata as Hi, TMetadata as Hl, resolveEnvReference as Hn, PROVIDER_CALL_EVENTS as Ho, TMessageFormatConverter as Hr, parseStructuredResponseText as Hs, peerDriverOf as Ht, findInvalidPermissionPatterns as I, IProviderDefinitionConfig as Ia, IProviderFailureDetails as Ic, IConversationResponse as Ii, ICacheStorage as Il, TOutputRetention as In, IToolExecutionResult as Io, validateApiKey as Ir, TExecutionEventData as Is, IOrchestrationStepResult as It, clearRegisteredToolProfiles as J, TProviderSetupField as Ja, ToolExecutionError as Jc, getToolExecutionSteps as Ji, createToolMessage as Jn, TSpanEvent as Jo, AbstractAIProvider as Jr, IResponseFormatConfig as Js, sumHistoryUsage as Jt, IToolPermissionProfile as K, TProviderModelCatalogStatus as Ka, TErrorContextData as Kc, TToolProgressCallback as Ki, createAssistantMessage as Kn, TOOL_BODY_EVENTS as Ko, AbstractExecutor as Kr, IZodSchema as Ks, ISessionUsageTotals as Kt, findPermissionPatternWarnings as L, IProviderEndpoint as La, ModelNotAvailableError as Lc, IConversationService as Li, TComplexConfigValue as Ll, createBoundedOutput as Ln, IToolRegistry as Lo, validateModelName as Lr, IJsonSchemaOutput as Ls, IParallelOrchestrationSpec as Lt, splitCommandSegments as M, TStructuredOutputMechanism as Ma, AuthenticationError as Mc, IStreamExecutionRequest as Mi, ICacheEntry as Ml, InMemoryEventEmitterMetrics as Mn, IFunctionTool as Mo, ErrorUtils as Mr, TToolSearchMode as Ms, IOrchestrationDelegation as Mt, applyPresetToolLists as N, TStructuredOutputProvenance as Na, CacheIntegrityError as Nc, TExecutorStreamEvent as Ni, ICacheKey as Nl, shellArgumentForDisplay as Nn, IParameterValidationResult as No, ISimpleValidationResult as Nr, TToolSearchSetting as Ns, IOrchestrationEventData as Nt, IContextTokenUsage as O, TProviderMediaResult as Oa, TProviderFailureReason as Oc, IExecutorStreamMessageEvent as Oi, IActionOption as Ol, IEventEmitterHierarchicalEventData as On, IPluginOptions as Oo, resolvePlatformShell as Or, TEventName as Os, TOrchestrationEvent as Ot, toolNamesToPatterns as P, IProviderCredentialRequirement as Pa, CircuitBreakerOpenError as Pc, IContextOptions as Pi, ICacheOptions as Pl, IBoundedOutput as Pn, ITool as Po, Validator as Pr, IRunOptions as Ps, IOrchestrationRunResult as Pt, matchesAnyPattern as Q, getProviderCredentialRequirement as Qa, IModelCapabilityDeviation as Qc, CONFIRM_YES as Qi, normalizeProviderConfig as Qn, USER_EVENT_PREFIX as Qo, IToolSchemaProjection as Qr, IProviderOptions as Qs, IRegistryTransactionStep as Qt, validatePermissionPattern as R, IProviderModelCatalog as Ra, NetworkError as Rc, IConversationServiceOptions as Ri, TConfigData as Rl, ENV_REFERENCE_PREFIX as Rn, IToolResult as Ro, validateProviderName as Rr, IStructuredOutputSpec as Rs, ISequentialOrchestrationSpec as Rt, CONTEXT_ESTIMATE_CHARS_PER_TOKEN as S, IUriImageInputSource as Sa, IProviderNativeWebToolRequest as Sc, IEventHistoryModule as Si, isChatEntry as Sl, TOOL_EVENT_PREFIX as Sn, IPluginContract as So, traceEnvFor as Sr, TEventLoggerData as Ss, ExecutionProxy as St, estimateContextTokensFromMessages as T, IVideoJobAccepted as Ta, IModelFallbackNotice as Tc, IChatExecutionRequest as Ti, isUserMessage as Tl, FunctionTool as Tn, IPluginExecutionContext as To, IPlatformShellResolutionRequest as Tr, IEventEmitterEventData as Ts, IExecutionProxyConfig as Tt, IPermissionEvaluationContext as U, IProviderSetupHelpLink as Ua, SameToolInputLoopError as Uc, TToolExecutionParameters as Ui, TMetadataValue as Ul, IAIProviderInstance as Un, PROVIDER_FALLBACK_EVENTS as Uo, TProviderMessage as Ur, validateAgainstJsonSchema as Us, printablePeerDriver as Ut, projectPermissionPolicy as V, IProviderProfileConfig as Va, RateLimitError as Vc, TConversationContextMetadata as Vi, TLoggerData as Vl, isEnvReference as Vn, ISpanCompletionEventData as Vo, TMessageConverterRegistry as Vr, normalizeStructuredOutput as Vs, AGENT_EVENT_PREFIX as Vt, IPermissionLists as W, IProviderSetupStepDefinition as Wa, StorageError as Wc, IProgressReportingTool as Wi, TToolParameters as Wl, LocalExecutor as Wn, SPAN_EVENTS as Wo, isAbortFailure as Wr, ISchemaConversionOptions as Ws, EventHistoryModule as Wt, getToolPermissionProfile as X, findProviderDefinition as Xa, IModelRef as Xc, setToolProgressCallback as Xi, ConversationStore as Xn, TUserEvent as Xo, IProviderRuntimeConfig as Xr, IChatOptions as Xs, IRegistryOwnedLifecycle as Xt, evaluatePermission as Y, TProviderSetupHelpLinkKind as Ya, ValidationError as Yc, isProgressReportingTool as Yi, createUserMessage as Yn, readModelFallbackNotice as Yo, IExecutorAwareProviderConfig as Yr, IAIProvider as Ys, sumMessagesUsage as Yt, isToolDeniedOutright as Z, formatSupportedProviderTypes as Za, TRoleModelMap as Zc, CONFIRM_NO as Zi, createProviderFromConfig as Zn, USER_EVENTS as Zo, TProviderLoggingData as Zr, IProviderNativeRawPayloadEvent as Zs, IRegistryTransactionError as Zt, getModelName as _, IImageGenerationRequest as _a, IProviderSpecificOptions as _c, IFileSystemAsync as _i, TUniversalMessagePart as _l, Robota as _n, setGlobalLogLevel as _o, outboundTraceContextFor as _r, IExecutionEventData as _s, TBackgroundPermissionPolicy as _t, IModelPrice as a, IToolFactory as aa, TProviderNativeRawPayloadCallback as ac, TOOL_SCHEMA_PROJECTION_MAX_NODES as ai, IBaseMessage as al, IAgentCreationStats as an, IToolWithEventService as ao, processEnvResolver as ar, StructuredEventService as as, PROTECTED_FILE_NAMES as at, readTokenUsageFromMessage as b, IMediaOutputRef as ba, IProviderNativeWebToolCapabilities as bc, ISpinner as bi, getMessagesForAPI as bl, EXECUTION_EVENT_PREFIX as bn, IPluginConfig as bo, subprocessTraceEnvironment as br, TEventExtensionValue as bs, TRUST_TO_MODE as bt, estimateBlendedCostPer1000 as c, TManagerToolParameters as ca, TTextDeltaCallback as cc, hashToolSchema as ci, ISystemMessage as cl, DEFAULT_TOOL_RESULT_HARD_CHARS as cn, ILogger as co, extractEnumValues as cr, composeEventName as cs, RISK_CLASS_POLICY as ct, DEFAULT_MAX_OUTPUT as d, IMediaProviderDefinition as da, IObjectParameterSchema as dc, IManagerLifecycleOptions as di, IToolMessage as dl, IToolResultSpillStore as dn, SilentLogger as do, ISchemaClosureChange as dr, IAgentEventData as ds, TArgumentKind as dt, isConfirmed as ea, IRawProviderResponse as ec, IToolSchemaProjectionProfile as ei, modelDeclaresCapability as el, lifecycleOf as en, IAgentConfig as eo, createImageProviderFromDefinition as er, TASK_EVENT_PREFIX as es, registerToolPermissionProfile as et, IModelDefinition as f, findMediaProviderDefinition as fa, IParameterSchema as fc, AbstractAgent as fi, IUriImageMessagePart as fl, MAX_TOOL_RESULT_CHARS as fn, TUtilLogLevel as fo, ISchemaClosureOptions as fr, IBaseEventData as fs, TMatchDirection as ft, getModelMaxOutput as g, IImageGenerationProvider as ga, TParameterDefaultValue as gc, IFileSystem as gi, TUniversalMessageMetadata as gl, wasToolResultAdmitted as gn, logger as go, isMintedSpanId as gr, IEventServiceOwnerBinding as gs, DEFAULT_BACKGROUND_PERMISSION_POLICY as gt, getModelContextWindow as h, IImageEditRequest as ha, TJSONSchemaKind as hc, IDirent as hi, TUniversalMessage as hl, admitToolResult as hn, getGlobalLoggerSink as ho, buildTraceparent as hr, IEventService as hs, isReadOnlyCommandLine as ht, runHooks as i, IOpenAPIToolConfig as ia, TProviderNativeRawPayload as ic, TOOL_SCHEMA_PROJECTION_MAX_DEPTH as ii, IAssistantMessage as il, ITemplateApplicationResult as in, IToolContract as io, createRecordEnvResolver as ir, ObservableEventService as is, PROTECTED_DIRECTORY_NAMES as it, isBroadExecutionAllowRule as j, IProviderStructuredOutputCapability as ja, toProviderError as jc, IRemoteExecutorConfig as ji, TActionResponse as jl, IEventEmitterMetricsSnapshot as jn, PluginPriority as jo, TTimerId as jr, TOOL_SEARCH_TOOL_NAME as js, IHierarchicalOrchestrationSpec as jt, IContextWindowState as k, isImageGenerationProvider as ka, classifyProviderFailure as kc, IExecutorStreamTerminalEvent as ki, IActionRequest as kl, IEventEmitterPluginOptions as kn, IPluginStats as ko, startPeriodicTask as kr, TExecutionEventName as ks, IGroupChatOrchestrationSpec as kt, lookupModelPrice as l, IMediaProviderConfig as la, TToolChoice as lc, projectToolSchema as li, ITextMessagePart as ll, DEFAULT_TOOL_RESULT_WARNING_CHARS as ln, ILoggerOptions as lo, getSchemaTypeName as lr, generateSpanId as ls, TToolRiskClass as lt, formatTokenCount as m, IImageComposeRequest as ma, TJSONSchemaEnum as mc, ICredentialStore as mi, TMessageState as ml, ToolResultAdmissionError as mn, getGlobalLogLevel as mo, zodToJsonSchema as mr, IEventObjectValue as ms, TResolveInWorkspace as mt, decodeHookVerdict as n, selectAction as na, ITokenUsageWithCacheRead as nc, PERMISSIVE_TOOL_SCHEMA_PROFILE as ni, resolveModelCapability as nl, AgentFactory as nn, IAbstractTool as no, resolveMediaProviderConfig as nr, DEFAULT_ABSTRACT_EVENT_SERVICE as ns, toolNameMatches as nt, MODEL_PRICES as o, IAIProviderManager as oa, TProviderNativeRawPayloadKind as oc, TToolSchemaProjectionOutcome as oi, IHistoryEntry as ol, IAgentFactoryOptions as on, TToolExecutionFunction as oo, IStructuredOutputResolutionInput as or, bindEventServiceOwner as os, isProtectedPath as ot, findModelDefinition as p, isMediaProviderDefinition as pa, IToolSchema as pc, ICredentialKey as pi, IUserMessage as pl, TToolResultAdmissionErrorCode as pn, createLogger as po, closeObjectSchemas as pr, IEventContext as ps, IReadOnlyCommandContext as pt, TToolArgs as q, TProviderModelLifecycle as qa, TErrorExternalInput as qc, getToolEstimatedDuration as qi, createSystemMessage as qn, TOOL_PERMISSION_EVENTS as qo, AbstractPlugin as qr, IZodSchemaDef as qs, collectAssistantUsageMetadata as qt, GuardrailExecutor as r, textAction as ra, TProviderConfigValue as rc, STRICT_TOOL_SCHEMA_PROFILE as ri, TProviderModelCapability as rl, AgentTemplates as rn, IAbstractToolOptions as ro, TEnvResolver as rr, DefaultEventService as rs, ICriticalPathContext as rt, calculateModelCost as s, IToolManager as sa, TProviderOptionValueBase as sc, TToolSchemaProjectionProfileBase as si, IInlineImageMessagePart as sl, IAgentLifecycleEvents as sn, ConsoleLogger as so, resolveStructuredOutputCapability as sr, bindWithOwnerPath as ss, removesCriticalPath as st, isEnforcing as t, multiSelectAction as ta, ITokenUsage as tc, PARAMETER_SCHEMA_KEYWORDS as ti, resolveModelCapabilities as tl, runRegistryTransaction as tn, IAgentTemplate as to, createVideoProviderFromDefinition as tr, AbstractEventService as ts, requiresFreshApproval as tt, DEFAULT_CONTEXT_WINDOW as u, IMediaProviderCredentialRequirement as ua, getProviderCapabilities as uc, AbstractManager as ui, IToolCall as ul, IToolResultAdmissionOptions as un, IUtilLogEntry as uo, hasValidationConstraints as ur, isDefaultEventService as us, UNCLASSIFIED_TOOL_FALLBACK as ut, registerModelMetadata as v, IImageGenerationResult as va, IProviderCapabilities as vc, IStats as vi, TUniversalMessageRole as vl, IDestroyResult as vn, setGlobalLoggerSink as vo, providerCallSpanId as vr, IOwnerPathSegment as vs, TPermissionDecision$1 as vt, IContextTokenEstimateOptions as w, IVideoGenerationRequest as wa, createDefaultProviderCapabilities as wc, IEventHistorySnapshot as wi, isToolMessage as wl, assertResidentToolRemains as wn, IPluginErrorContext as wo, IPlatformShell as wr, EVENT_EMITTER_EVENTS as ws, withEventEmission as wt, readTokenUsageFromMetadata as x, IProviderMediaError as xa, IProviderNativeWebToolCapability as xc, ITerminalOutput as xi, isAssistantMessage as xl, TOOL_EVENTS as xn, IPluginContext as xo, toolTraceContextFor as xr, TEventListener as xs, TTrustLevel as xt, IMessageTokenUsage as y, IInlineImageInputSource as ya, IProviderFunctionCallingCapability as yc, ISession as yi, chatEntryToMessage as yl, EXECUTION_EVENTS as yn, IPlugin as yo, spanIdFromMintedId as yr, IToolEventData as ys, TPermissionMode as yt, IPermissionPolicyContext as z, IProviderModelCatalogEntry as za, PluginError as zc, IStreamingChunk as zi, TConfigValue as zl, formatEnvReference as zn, TToolExecutor as zo, validateUserInput as zr, TStructuredOutputSchema as zs, TOrchestrationPrimitive as zt };
|
|
6967
|
+
//# sourceMappingURL=index-D4iJ5IsN.d.ts.map
|