veryfront 0.1.494 → 0.1.496
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/esm/deno.js +1 -1
- package/esm/src/agent/index.d.ts +18 -18
- package/esm/src/agent/index.d.ts.map +1 -1
- package/esm/src/agent/index.js +15 -15
- package/esm/src/rendering/rsc/hydrate-client.ts +6 -3
- package/esm/src/sandbox/index.d.ts +1 -1
- package/esm/src/sandbox/index.d.ts.map +1 -1
- package/esm/src/sandbox/index.js +1 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/agent/index.ts +132 -0
- package/src/src/sandbox/index.ts +7 -0
- package/src/src/utils/version-constant.ts +1 -1
package/esm/deno.js
CHANGED
package/esm/src/agent/index.d.ts
CHANGED
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
import "../../_dnt.polyfills.js";
|
|
82
82
|
export type { Agent, AgentConfig, AgentContext, AgentMiddleware, AgentResponse, AgentStatus, AgentStreamResult, AgentSuggestion, AgentSuggestions, EdgeConfig, MemoryConfig, Message as AgentMessage, MessagePart, ModelProvider, ModelString, ModelTransportRequest, ModelTransportResolver, ResolvedAgentConfig, ResolvedModelTransport, ResolvedRuntimeState, RuntimeStateRequest, RuntimeStateResolver, StreamToolCall, ToolCall, ToolCallPart, ToolCallPartWithArgs, ToolCallPartWithInput, ToolResultPart, } from "./types.js";
|
|
83
83
|
export { type HostedChildProjectSwitchHandler, type HostedChildSteeringMutationHandler, wrapHostedChildProjectSwitchTool, type WrapHostedChildProjectSwitchToolInput, wrapHostedChildSteeringMutationTool, type WrapHostedChildSteeringMutationToolInput, } from "./hosted-child-steering-tools.js";
|
|
84
|
-
export { filterHostedChatRuntimeLocalTools, type HostedChatRuntimeAllowedToolNames, type HostedChatRuntimeToolAssemblyContext, type HostedChatRuntimeToolAssemblyResult, prepareHostedChatRuntimeToolAssembly, type PrepareHostedChatRuntimeToolAssemblyInput, } from "./hosted-chat-runtime-tool-assembly.js";
|
|
84
|
+
export { filterHostedChatRuntimeLocalTools, type HostedChatRuntimeAllowedToolNames, type HostedChatRuntimeToolAssemblyContext, type HostedChatRuntimeToolAssemblyResult, type HostedChatRuntimeToolAssemblyResult as AgentServiceChatRuntimeToolAssemblyResult, prepareHostedChatRuntimeToolAssembly, type PrepareHostedChatRuntimeToolAssemblyInput, } from "./hosted-chat-runtime-tool-assembly.js";
|
|
85
85
|
export { createHostedProjectRemoteToolSource, type CreateHostedProjectRemoteToolSourceInput, createHostedProjectRemoteToolSources, type CreateHostedProjectRemoteToolSourcesInput, type HostedProjectRemoteToolSourceMutationHandler, type HostedProjectRemoteToolSourcePrepareToolInput, type HostedProjectRemoteToolSourceProjectSwitchHandler, type HostedProjectRemoteToolSourceRetryPolicy, } from "./hosted-project-remote-tool-source.js";
|
|
86
86
|
export { DEFAULT_PROJECT_STEERING_PATHS, getProjectSteeringMutation, isSuccessfulProjectSteeringMutationResult, PROJECT_STEERING_FILE_MUTATION_TOOL_NAMES, type ProjectSteeringMutationInput, type ProjectSteeringMutationResult, type ProjectSteeringPaths, } from "./project-steering-mutation.js";
|
|
87
87
|
export { clientAllowsStudioMcp, resolveRuntimeClientProfile, type RuntimeClientCapability, runtimeClientCapabilitySchema, type RuntimeClientProfile, runtimeClientProfileSchema, type RuntimeClientType, runtimeClientTypeSchema, } from "./runtime-client-profile.js";
|
|
@@ -98,8 +98,8 @@ export { agent } from "./factory.js";
|
|
|
98
98
|
export { isResponseLike } from "./response-like.js";
|
|
99
99
|
export { type AgentContract, type AgentRegistry, type AgentServiceCorsConfig, type AgentServiceDefinition, type AgentServiceRegistryContract, type AgentServiceRoute, type AgentServiceRouteMethod, type AgentServiceServerConfig, type AgentServiceSingleAgentContract, defineAgentService, type DurableRunSink, type NormalizedAgentServiceContract, } from "./agent-service.js";
|
|
100
100
|
export { type AgentServiceServerLifecycle, createAgentServiceServerRuntime, type CreateAgentServiceServerRuntimeOptions, type NodeAgentServiceServer, startNodeAgentServiceServer, type StartNodeAgentServiceServerOptions, } from "./agent-service-server.js";
|
|
101
|
-
export { createDefaultHostedChatRuntime, type CreateDefaultHostedChatRuntimeContextInput, type CreateDefaultHostedChatRuntimeOptions, type DefaultHostedChatRuntimeConfig, type DefaultHostedChatRuntimeCreationOptions, type DefaultHostedChatRuntimeLogger, type DefaultHostedChatRuntimeProjectSwitchInput, type DefaultHostedChatRuntimeSteeringMutationInput, type DefaultHostedChatRuntimeSystemRefreshInput, type DefaultHostedChatRuntimeTaskContext, } from "./default-hosted-chat-runtime.js";
|
|
102
|
-
export { createDefaultHostedProjectSteeringRefresh, type CreateDefaultHostedProjectSteeringRefreshOptions, type DefaultHostedProjectSteeringFetchers, type DefaultHostedProjectSteeringRefreshLogger, type DefaultHostedProjectSteeringRefreshLookup, fetchDefaultHostedProjectSteering, type FetchDefaultHostedProjectSteeringInput, } from "./default-hosted-project-steering-refresh.js";
|
|
101
|
+
export { createDefaultHostedChatRuntime, createDefaultHostedChatRuntime as createDefaultAgentServiceChatRuntime, type CreateDefaultHostedChatRuntimeContextInput, type CreateDefaultHostedChatRuntimeContextInput as CreateDefaultAgentServiceChatRuntimeContextInput, type CreateDefaultHostedChatRuntimeOptions, type CreateDefaultHostedChatRuntimeOptions as CreateDefaultAgentServiceChatRuntimeOptions, type DefaultHostedChatRuntimeConfig, type DefaultHostedChatRuntimeConfig as DefaultAgentServiceChatRuntimeConfig, type DefaultHostedChatRuntimeCreationOptions, type DefaultHostedChatRuntimeCreationOptions as DefaultAgentServiceChatRuntimeCreationOptions, type DefaultHostedChatRuntimeLogger, type DefaultHostedChatRuntimeLogger as DefaultAgentServiceChatRuntimeLogger, type DefaultHostedChatRuntimeProjectSwitchInput, type DefaultHostedChatRuntimeProjectSwitchInput as DefaultAgentServiceChatRuntimeProjectSwitchInput, type DefaultHostedChatRuntimeSteeringMutationInput, type DefaultHostedChatRuntimeSteeringMutationInput as DefaultAgentServiceChatRuntimeSteeringMutationInput, type DefaultHostedChatRuntimeSystemRefreshInput, type DefaultHostedChatRuntimeSystemRefreshInput as DefaultAgentServiceChatRuntimeSystemRefreshInput, type DefaultHostedChatRuntimeTaskContext, type DefaultHostedChatRuntimeTaskContext as DefaultAgentServiceChatRuntimeTaskContext, } from "./default-hosted-chat-runtime.js";
|
|
102
|
+
export { createDefaultHostedProjectSteeringRefresh, createDefaultHostedProjectSteeringRefresh as createDefaultAgentServiceProjectSteeringRefresh, type CreateDefaultHostedProjectSteeringRefreshOptions, type CreateDefaultHostedProjectSteeringRefreshOptions as CreateDefaultAgentServiceProjectSteeringRefreshOptions, type DefaultHostedProjectSteeringFetchers, type DefaultHostedProjectSteeringFetchers as DefaultAgentServiceProjectSteeringFetchers, type DefaultHostedProjectSteeringRefreshLogger, type DefaultHostedProjectSteeringRefreshLogger as DefaultAgentServiceProjectSteeringRefreshLogger, type DefaultHostedProjectSteeringRefreshLookup, type DefaultHostedProjectSteeringRefreshLookup as DefaultAgentServiceProjectSteeringRefreshLookup, fetchDefaultHostedProjectSteering, fetchDefaultHostedProjectSteering as fetchDefaultAgentServiceProjectSteering, type FetchDefaultHostedProjectSteeringInput, type FetchDefaultHostedProjectSteeringInput as FetchDefaultAgentServiceProjectSteeringInput, } from "./default-hosted-project-steering-refresh.js";
|
|
103
103
|
export { type AgentServiceRuntimeBundle, type AgentServiceRuntimeConfig, type AgentServiceRuntimeLogger, type AgentServiceRuntimeTrace, createAgentServiceRuntime, type CreateAgentServiceRuntimeOptions, createHostedAgentServiceRuntime, type CreateHostedAgentServiceRuntimeOptions, type HostedAgentServiceRuntimeBundle, type HostedAgentServiceRuntimeConfig, type HostedAgentServiceRuntimeLogger, type HostedAgentServiceRuntimeTrace, startNodeAgentService, type StartNodeAgentServiceOptions, type StartNodeAgentServiceResult, startNodeHostedAgentService, type StartNodeHostedAgentServiceOptions, type StartNodeHostedAgentServiceResult, } from "./hosted-agent-service-runtime.js";
|
|
104
104
|
export { type AgentServiceConfig, type AgentServiceConfigInput, agentServiceConfigSchema, type HostedAgentServiceConfig, type HostedAgentServiceConfigInput, hostedAgentServiceConfigSchema, parseAgentServiceConfig, parseHostedAgentServiceConfig, } from "./hosted-agent-service-config.js";
|
|
105
105
|
export { type AgentServiceEnvFileLoadOptions, type AgentServiceEnvFileLoadResult, type HostedAgentServiceEnvFileLoadOptions, type HostedAgentServiceEnvFileLoadResult, loadAgentServiceEnvFiles, loadHostedAgentServiceEnvFiles, } from "./hosted-agent-service-env-files.js";
|
|
@@ -114,12 +114,12 @@ export { type AgUiRuntimeContextItem, AgUiRuntimeContextItemSchema, type AgUiRun
|
|
|
114
114
|
export { type AgentTraceAttributes, type AgentTraceAttributeValue, type AgentTraceUsage, buildAgentRunTraceAttributes, buildExecuteToolTraceAttributes, buildFinalizedAgentRunTraceAttributes, buildInvokeAgentTraceAttributes, filterAgentTraceAttributes, isAgentTraceAttributeValue, } from "./agent-trace-attributes.js";
|
|
115
115
|
export { createHostedChatRuntimeAgentAdapter, type HostedChatRuntimeAgentAdapterInput, type HostedChatRuntimeAgentAdapterRunner, type HostedChatRuntimeAgentAdapterWarning, } from "./hosted-chat-runtime-agent-adapter.js";
|
|
116
116
|
export { createHostedAgentRunSpanController, type CreateHostedAgentRunSpanControllerInput, createHostedRootRunLifecycleRuntimeAdapter, type CreateHostedRootRunLifecycleRuntimeAdapterInput, type HostedAgentRunSpan, type HostedAgentRunSpanController, type HostedAgentRunSpanFinalState, type HostedAgentRunTracer, type HostedRootRunLifecycleRuntimeAdapter, } from "./hosted-agent-run-lifecycle.js";
|
|
117
|
-
export type { HostedChatRuntimeAgent, HostedChatRuntimeCreationOptions, HostedChatRuntimeCreationResult, HostedChatRuntimeFinishPart, HostedChatRuntimeOnFinishEvent, HostedChatRuntimeProjectSteering, HostedChatRuntimeStreamInput, HostedChatRuntimeStreamResult, HostedChatRuntimeToUiMessageStreamOptions, } from "./hosted-chat-runtime-contract.js";
|
|
118
|
-
export { createHostedAgentServiceRouteSet, type HostedAgentServiceActiveSpanAttributes, type HostedAgentServiceDetachedCleanupInput, type HostedAgentServiceDetachedExecutionInput, type HostedAgentServiceRouteSet, type HostedAgentServiceRouteSetOptions, type HostedAgentServiceRoutesLogger, type HostedAgentServiceRoutesTrace, type HostedAgentServiceStreamExecutionInput, } from "./hosted-agent-service-routes.js";
|
|
117
|
+
export type { HostedChatRuntimeAgent, HostedChatRuntimeAgent as AgentServiceChatRuntimeAgent, HostedChatRuntimeCreationOptions, HostedChatRuntimeCreationOptions as AgentServiceChatRuntimeCreationOptions, HostedChatRuntimeCreationResult, HostedChatRuntimeCreationResult as AgentServiceChatRuntimeCreationResult, HostedChatRuntimeFinishPart, HostedChatRuntimeFinishPart as AgentServiceChatRuntimeFinishPart, HostedChatRuntimeOnFinishEvent, HostedChatRuntimeOnFinishEvent as AgentServiceChatRuntimeOnFinishEvent, HostedChatRuntimeProjectSteering, HostedChatRuntimeProjectSteering as AgentServiceChatRuntimeProjectSteering, HostedChatRuntimeStreamInput, HostedChatRuntimeStreamInput as AgentServiceChatRuntimeStreamInput, HostedChatRuntimeStreamResult, HostedChatRuntimeStreamResult as AgentServiceChatRuntimeStreamResult, HostedChatRuntimeToUiMessageStreamOptions, HostedChatRuntimeToUiMessageStreamOptions as AgentServiceChatRuntimeToUiMessageStreamOptions, } from "./hosted-chat-runtime-contract.js";
|
|
118
|
+
export { createHostedAgentServiceRouteSet, createHostedAgentServiceRouteSet as createAgentServiceRouteSet, type HostedAgentServiceActiveSpanAttributes, type HostedAgentServiceActiveSpanAttributes as AgentServiceActiveSpanAttributes, type HostedAgentServiceDetachedCleanupInput, type HostedAgentServiceDetachedCleanupInput as AgentServiceDetachedCleanupInput, type HostedAgentServiceDetachedExecutionInput, type HostedAgentServiceDetachedExecutionInput as AgentServiceDetachedExecutionInput, type HostedAgentServiceRouteSet, type HostedAgentServiceRouteSet as AgentServiceRouteSet, type HostedAgentServiceRouteSetOptions, type HostedAgentServiceRouteSetOptions as AgentServiceRouteSetOptions, type HostedAgentServiceRoutesLogger, type HostedAgentServiceRoutesLogger as AgentServiceRoutesLogger, type HostedAgentServiceRoutesTrace, type HostedAgentServiceRoutesTrace as AgentServiceRoutesTrace, type HostedAgentServiceStreamExecutionInput, type HostedAgentServiceStreamExecutionInput as AgentServiceStreamExecutionInput, } from "./hosted-agent-service-routes.js";
|
|
119
119
|
export { createHostedRuntimeStateResolver, type CreateHostedRuntimeStateResolverOptions, type HostedRuntimeStateResolverContext, type HostedRuntimeStateResolverInput, type HostedRuntimeStateResolverResult, type HostedRuntimeSystemRefresh, type HostedRuntimeSystemRefreshInput, } from "./hosted-runtime-state-resolver.js";
|
|
120
120
|
export { executeHostedDurableChatRun, type ExecuteHostedDurableChatRunInput, type HostedDurableRunAccepted, type HostedDurableRunAuthErrorResponse, type HostedDurableRunLogger, type HostedDurableRunSetupErrorStatusCode, type HostedDurableRunStartCleanupInput, type HostedDurableRunStartExecutionInput, resolveHostedDurableRunSetupErrorResponse, } from "./hosted-durable-chat-run-start.js";
|
|
121
|
-
export { buildParsedHostedChatRequest, type HostedChatProjectAccessError, type HostedChatProjectAccessResult, type HostedChatRequestPrincipal, type ParsedHostedChatRequest, parseHostedChatRequestFromRequest, type ParseHostedChatRequestOptions, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest, } from "./hosted-chat-request-parser.js";
|
|
122
|
-
export { buildParsedHostedAgUiRequest, type BuildParsedHostedAgUiRequestOptions, createHostedAgUiValidationErrorResponse, type DerivedHostedAgUiChatContext, deriveHostedAgUiChatContext, type HostedAgUiChatForwardedConfig, hostedAgUiChatForwardedConfigSchema, type ParsedHostedAgUiRequest, } from "./hosted-ag-ui-chat-request.js";
|
|
121
|
+
export { buildParsedHostedChatRequest, buildParsedHostedChatRequest as buildParsedAgentServiceChatRequest, type HostedChatProjectAccessError, type HostedChatProjectAccessError as AgentServiceChatProjectAccessError, type HostedChatProjectAccessResult, type HostedChatProjectAccessResult as AgentServiceChatProjectAccessResult, type HostedChatRequestPrincipal, type HostedChatRequestPrincipal as AgentServiceChatRequestPrincipal, type ParsedHostedChatRequest, type ParsedHostedChatRequest as ParsedAgentServiceChatRequest, parseHostedChatRequestFromRequest, parseHostedChatRequestFromRequest as parseAgentServiceChatRequestFromRequest, type ParseHostedChatRequestOptions, type ParseHostedChatRequestOptions as ParseAgentServiceChatRequestOptions, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest as parseRuntimeAgentRunInvocationAgentServiceChatRequestFromRequest, } from "./hosted-chat-request-parser.js";
|
|
122
|
+
export { buildParsedHostedAgUiRequest, buildParsedHostedAgUiRequest as buildParsedAgentServiceAgUiRequest, type BuildParsedHostedAgUiRequestOptions, type BuildParsedHostedAgUiRequestOptions as BuildParsedAgentServiceAgUiRequestOptions, createHostedAgUiValidationErrorResponse, createHostedAgUiValidationErrorResponse as createAgentServiceAgUiValidationErrorResponse, type DerivedHostedAgUiChatContext, type DerivedHostedAgUiChatContext as DerivedAgentServiceAgUiChatContext, deriveHostedAgUiChatContext, deriveHostedAgUiChatContext as deriveAgentServiceAgUiChatContext, type HostedAgUiChatForwardedConfig, type HostedAgUiChatForwardedConfig as AgentServiceAgUiChatForwardedConfig, hostedAgUiChatForwardedConfigSchema, hostedAgUiChatForwardedConfigSchema as agentServiceAgUiChatForwardedConfigSchema, type ParsedHostedAgUiRequest, type ParsedHostedAgUiRequest as ParsedAgentServiceAgUiRequest, } from "./hosted-ag-ui-chat-request.js";
|
|
123
123
|
export { buildHostedChatRequestForwardedPropsFromRuntimeAgentInvocation, buildHostedChatRequestFromRuntimeAgentInvocation, buildHostedChatRequestInputFromRuntimeAgentInvocation, type HostedChatRequest, type HostedChatRequestInput, hostedChatRequestSchema, hostedChatRuntimeOverridesSchema, hostedDurableRootRunDescriptorSchema, } from "./hosted-chat-request.js";
|
|
124
124
|
export { getForwardedHostedModelId, getForwardedHostedRuntimeOverrides, type HostedRuntimeRequestConfigAgent, type HostedRuntimeRequestConfigRequest, type ResolvedHostedRuntimeRequestConfig, resolveHostedRuntimeRequestConfig, type ResolveHostedRuntimeRequestConfigInput, resolveHostedRuntimeThinkingOverride, } from "./hosted-runtime-request-config.js";
|
|
125
125
|
export { parseRuntimeAgentRunInvocation, parseRuntimeAgentRunInvocationOrError, type RuntimeAgentContextItem, RuntimeAgentContextItemSchema, RuntimeAgentIdSchema, type RuntimeAgentProjectContext, RuntimeAgentProjectContextSchema, type RuntimeAgentRunContext, RuntimeAgentRunContextSchema, RuntimeAgentRunIdSchema, type RuntimeAgentRunInvocation, RuntimeAgentRunInvocationSchema, RuntimeAgentServiceIdSchema, type RuntimeAgentSourceContext, RuntimeAgentSourceContextSchema, type RuntimeAgentTargetKind, RuntimeAgentTargetKindSchema, type RuntimeAgentTool, RuntimeAgentToolCallIdSchema, RuntimeAgentToolNameSchema, RuntimeAgentToolSchema, type RuntimeAgentValidatedClaims, RuntimeAgentValidatedClaimsSchema, validateRuntimeAgentTargetSelection, } from "./runtime-agent-invocation-contract.js";
|
|
@@ -144,7 +144,7 @@ export { createHostedChildForkRunContext, createHostedDurableChildForkRunContext
|
|
|
144
144
|
export { executeHostedChildForkStream, type ExecuteHostedChildForkStreamInput, finalizeHostedChildForkCompletion, handleHostedChildForkFailure, type HandleHostedChildForkFailureInput, handleHostedChildForkStreamPart, type HostedChildForkPendingToolLifecycle, type HostedChildForkStreamHandlingState, type HostedChildForkStreamLogger, type HostedChildForkStreamTraceInput, } from "./hosted-child-fork-stream-execution.js";
|
|
145
145
|
export { type ConversationRunContext, createConversationRunContext, } from "./conversation-run-context.js";
|
|
146
146
|
export { type ConversationRootRunContext, type ConversationRootRunDescriptor, createConversationRootRunContext, createConversationRootRunStartAdapter, prepareConversationRootRunContext, startConversationRootRun, } from "./conversation-root-run-context.js";
|
|
147
|
-
export { type ConversationRootRunLifecycle, type HostedConversationRootRunContext, type HostedConversationRootRunState, prepareConversationRootRunLifecycle, type PrepareConversationRootRunLifecycleOptions, prepareHostedConversationRootRunContext, type PrepareHostedConversationRootRunContextInput, } from "./conversation-root-run-lifecycle.js";
|
|
147
|
+
export { type ConversationRootRunLifecycle, type HostedConversationRootRunContext, type HostedConversationRootRunContext as AgentServiceConversationRootRunContext, type HostedConversationRootRunState, type HostedConversationRootRunState as AgentServiceConversationRootRunState, prepareConversationRootRunLifecycle, type PrepareConversationRootRunLifecycleOptions, prepareHostedConversationRootRunContext, prepareHostedConversationRootRunContext as prepareAgentServiceConversationRootRunContext, type PrepareHostedConversationRootRunContextInput, type PrepareHostedConversationRootRunContextInput as PrepareAgentServiceConversationRootRunContextInput, } from "./conversation-root-run-lifecycle.js";
|
|
148
148
|
export { bootstrapConversationAgentRun, type BootstrapConversationAgentRunResult, type ConversationControlPlaneResponseError, type ConversationMessageRecord, ConversationMessageRecordSchema, type ConversationRecord, ConversationRecordSchema, createConversationMessage, createConversationRecord, ensureConversationProjectLink, fetchConversationRecord, findLatestUserConversationMessageContext, persistConversationUserMessage, type PersistConversationUserMessageFailure, persistLatestConversationUserMessage, } from "./conversation-bootstrap.js";
|
|
149
149
|
export { buildHostedDurableChildInvokeFailureResult, type BuildHostedDurableChildInvokeFailureResultInput, buildHostedDurableChildInvokeSuccessResult, buildHostedDurableChildInvokeTerminalFailureResult, createHostedDurableChildInvokeTraceRecorder, executeHostedDurableChildFork, type ExecuteHostedDurableChildForkInput, executeHostedLocalChildInvoke, type ExecuteHostedLocalChildInvokeInput, type HostedDurableChildBootstrapCallbacks, type HostedDurableChildBootstrapContext, type HostedDurableChildExecutionOptions, type HostedDurableChildInvokeResult, type HostedDurableChildInvokeTraceBase, type HostedDurableChildInvokeTraceInput, type HostedDurableChildInvokeTraceOverrides, type HostedDurableChildInvokeTraceRecorder, type HostedDurableChildRuntimeDependencies, type HostedDurableChildSetupFailure, type HostedDurableChildSuccess, type HostedDurableChildTerminalFailure, type HostedLocalChildInvokeTraceRecorder, } from "./hosted-durable-child-fork-execution.js";
|
|
150
150
|
export { bootstrapHostedChildRun, type BootstrapHostedChildRunInput, type BootstrapHostedChildRunResult, buildHostedChildConversationBody, type HostedChildConversationBodyInput, } from "./hosted-child-bootstrap.js";
|
|
@@ -159,14 +159,14 @@ export { formatChildRunStreamPartError, isChildRunAbortError, throwIfChildRunAbo
|
|
|
159
159
|
export { type AgentRuntimeMessage, AgentRuntimeMessageConversionError, type AgentRuntimeMessagePart, convertAgentRuntimeMessagesToProviderMessages, convertProviderMessagesToAgentRuntimeMessages, createToolResultPart, getAgentRuntimeTextPart, getAgentRuntimeToolCallPart, getAgentRuntimeToolResultPart, } from "./agent-runtime-message-adapter.js";
|
|
160
160
|
export { resolveRuntimeMessageFileUrls, type RuntimeFileUrlResolver, type RuntimeFileUrlResolverInput, } from "./runtime-message-file-url-refresh.js";
|
|
161
161
|
export { prepareAgentRuntimeMessagesFromUiMessages, type PrepareAgentRuntimeMessagesFromUiMessagesOptions, } from "./runtime-message-preparation.js";
|
|
162
|
-
export { type HostedChatExecutionPreparationInput, type HostedChatExecutionPreparationResult, type HostedChatExecutionPreparationRootRunOptions, type HostedChatRuntimeCreationPreparationInput, type HostedChatRuntimeCreationPreparationResult, type HostedChatRuntimeInstructionsInput, type HostedChatRuntimePreparationRootRunContext, type HostedChatRuntimePreparationSteering, type NormalizedHostedChatRequest, normalizeParsedHostedChatRequest, prepareHostedChatExecution, prepareHostedChatRuntimeCreationOptions, prepareHostedChatRuntimeMessages, type PrepareHostedChatRuntimeMessagesOptions, } from "./hosted-chat-preparation.js";
|
|
162
|
+
export { type HostedChatExecutionPreparationInput, type HostedChatExecutionPreparationResult, type HostedChatExecutionPreparationRootRunOptions, type HostedChatRuntimeCreationPreparationInput, type HostedChatRuntimeCreationPreparationResult, type HostedChatRuntimeInstructionsInput, type HostedChatRuntimePreparationRootRunContext, type HostedChatRuntimePreparationSteering, type NormalizedHostedChatRequest, type NormalizedHostedChatRequest as NormalizedAgentServiceChatRequest, normalizeParsedHostedChatRequest, normalizeParsedHostedChatRequest as normalizeParsedAgentServiceChatRequest, prepareHostedChatExecution, prepareHostedChatExecution as prepareAgentServiceChatExecution, prepareHostedChatRuntimeCreationOptions, prepareHostedChatRuntimeCreationOptions as prepareAgentServiceChatRuntimeCreationOptions, prepareHostedChatRuntimeMessages, prepareHostedChatRuntimeMessages as prepareAgentServiceChatRuntimeMessages, type PrepareHostedChatRuntimeMessagesOptions, type PrepareHostedChatRuntimeMessagesOptions as PrepareAgentServiceChatRuntimeMessagesOptions, } from "./hosted-chat-preparation.js";
|
|
163
163
|
export { getRuntimeUploadUrl, type RuntimeUploadUrlClientOptions, type RuntimeUploadUrlFetch, type RuntimeUploadUrlOptions, } from "./runtime-upload-url-client.js";
|
|
164
164
|
export { type ChildRunExecutionBufferCleanupInput, type ChildRunExecutionResourceFinalizeInput, closeChildRunExecutionBuffers, finalizeChildRunExecutionResources, } from "./child-run-execution-cleanup.js";
|
|
165
165
|
export { createHostedChildPendingToolLifecycle, createHostedChildPendingToolLifecycleLogger, type HostedChildPendingToolCallPhase, type HostedChildPendingToolCallState, type HostedChildPendingToolLifecycleCloseLog, type HostedChildPendingToolLifecycleCloseReason, type HostedChildPendingToolLifecycleInput, type HostedChildPendingToolLifecycleLogContext, type HostedChildPendingToolLifecycleLogger, type HostedChildPendingToolLifecycleLogWriter, type HostedChildPendingToolLifecycleUnknownToolLog, } from "./hosted-child-pending-tool-lifecycle.js";
|
|
166
166
|
export { composeAbortSignals, HOSTED_CHILD_STREAM_TIMEOUT_TOKEN, HostedChildStreamIdleTimeoutError, type HostedChildStreamWatchdogPhase, type HostedChildStreamWatchdogState, resolveHostedChildPromiseWithTimeout, resolveHostedChildStreamWatchdogState, withHostedChildStreamIdleTimeout, } from "./hosted-child-stream-watchdog.js";
|
|
167
167
|
export { DEFAULT_HOSTED_CHILD_AGENT_ID, type HostedChildForkRuntimeConfig, type HostedChildForkToolInput, hostedChildForkToolInputSchema, resolveHostedChildForkRuntimeConfig, type ResolveHostedChildForkRuntimeConfigInput, resolveHostedChildForkThinkingOverride, } from "./hosted-child-tool-input.js";
|
|
168
168
|
export { createHostedChildInvokeTool, type CreateHostedChildInvokeToolOptions, type HostedChildInvokeFailure, } from "./hosted-child-invoke-tool.js";
|
|
169
|
-
export { createDefaultHostedInvokeAgentTool, type DefaultHostedInvokeAgentConfig, type DefaultHostedInvokeAgentContext, type DefaultHostedInvokeAgentInput, defaultHostedInvokeAgentInputSchema, type DefaultHostedInvokeAgentLogger, type DefaultHostedInvokeAgentProjectRefresh, defaultHostedInvokeAgentSelectionSchema, type DefaultHostedInvokeAgentToolOptions, type DefaultHostedInvokeAgentToolResult, type DefaultHostedInvokeAgentTrace, type DefaultHostedInvokeAgentTraceAttributes, executeDefaultHostedInvokeAgentTool, } from "./default-hosted-invoke-agent-tool.js";
|
|
169
|
+
export { createDefaultHostedInvokeAgentTool, createDefaultHostedInvokeAgentTool as createDefaultAgentServiceInvokeAgentTool, type DefaultHostedInvokeAgentConfig, type DefaultHostedInvokeAgentConfig as DefaultAgentServiceInvokeAgentConfig, type DefaultHostedInvokeAgentContext, type DefaultHostedInvokeAgentContext as DefaultAgentServiceInvokeAgentContext, type DefaultHostedInvokeAgentInput, type DefaultHostedInvokeAgentInput as DefaultAgentServiceInvokeAgentInput, defaultHostedInvokeAgentInputSchema, type DefaultHostedInvokeAgentLogger, type DefaultHostedInvokeAgentLogger as DefaultAgentServiceInvokeAgentLogger, type DefaultHostedInvokeAgentProjectRefresh, type DefaultHostedInvokeAgentProjectRefresh as DefaultAgentServiceInvokeAgentProjectRefresh, defaultHostedInvokeAgentSelectionSchema, type DefaultHostedInvokeAgentToolOptions, type DefaultHostedInvokeAgentToolOptions as DefaultAgentServiceInvokeAgentToolOptions, type DefaultHostedInvokeAgentToolResult, type DefaultHostedInvokeAgentToolResult as DefaultAgentServiceInvokeAgentToolResult, type DefaultHostedInvokeAgentTrace, type DefaultHostedInvokeAgentTrace as DefaultAgentServiceInvokeAgentTrace, type DefaultHostedInvokeAgentTraceAttributes, type DefaultHostedInvokeAgentTraceAttributes as DefaultAgentServiceInvokeAgentTraceAttributes, executeDefaultHostedInvokeAgentTool, executeDefaultHostedInvokeAgentTool as executeDefaultAgentServiceInvokeAgentTool, } from "./default-hosted-invoke-agent-tool.js";
|
|
170
170
|
export { buildDefaultHostedChildForkToolSet, buildHostedChildToolDescription, DEFAULT_HOSTED_CHILD_EXCLUDED_TOOL_NAMES, DEFAULT_HOSTED_CHILD_REQUESTED_TOOL_COMPANIONS, DEFAULT_HOSTED_CHILD_SANDBOX_REQUIRED_CUE_PATTERN, type DefaultHostedChildForkRuntimeToolPreparationResult, type DefaultHostedChildForkToolAssemblyResult, type DefaultHostedChildForkToolAssemblySourceResult, expandHostedChildRequestedTools, type HostedChildForkRuntimeToolSelectionResult, type HostedChildRequestedToolsInput, prepareDefaultHostedChildForkRuntimeTools, prepareDefaultHostedChildForkToolAssembly, sanitizeDefaultHostedChildRequestedTools, sanitizeHostedChildRequestedTools, selectDefaultHostedChildForkRuntimeTools, selectHostedChildForkRuntimeTools, shouldPruneSandboxToolsFromHostedChildRequest, } from "./hosted-child-requested-tools.js";
|
|
171
171
|
export { getHostedChildWrittenArtifactPath, type HostedChildFileWriteFallbackLogger, type HostedChildFileWriteFallbackTool, type HostedChildFileWriteFallbackToolExecute, type HostedChildWrittenArtifactPathInput, isHostedChildCreateFileAlreadyExistsResult, isHostedChildTextProjectArtifactPrompt, normalizeHostedChildArtifactPath, withHostedChildRerunnableFileWriteFallbacks, } from "./hosted-child-artifact-support.js";
|
|
172
172
|
export { buildDefaultResearchArtifactPathReminder, buildDefaultResearchArtifactPaths, type DefaultResearchArtifactPaths, shouldInjectDefaultResearchArtifactPath, withDefaultResearchArtifactPath, } from "./default-research-artifact-policy.js";
|
|
@@ -175,8 +175,8 @@ export { containsExactArtifactPathValue, evaluateSlashCommandArtifactPolicy, typ
|
|
|
175
175
|
export { addFirstTurnStarterIntentRootOwnershipReminder, addLoadSkillContinuationReminder, addSlashCommandArtifactReminder, buildInvokeAgentFollowupInstruction, buildRootOwnedChildResultHint, buildRootOwnedDelegatedFindingsInstruction, buildStarterIntentRootOwnershipBlockMessage, buildStarterIntentRootOwnershipReminder, DELEGATE_ONLY_WHEN_MATERIALLY_HELPFUL, evaluateStarterIntentTurnPolicy, extractStarterIntentId, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_BLOCK_MESSAGE, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_CONTEXT_KEY, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_REMINDER, isStarterIntentRootOwnershipRequired, KEEP_ROOT_ASSISTANT_VISIBLE_OWNER, LOAD_SKILL_CONTINUATION_REMINDER, LOAD_SKILL_CONTINUE_SAME_TURN, LOAD_SKILL_CONTINUE_SAME_TURN_NOW, LOAD_SKILL_DELEGATION_THRESHOLD, LOAD_SKILL_OVERRIDE_FORWARDING, LOAD_SKILL_ROOT_OWNERSHIP, LOAD_SKILL_TOOL_INTERSECTION, LOAD_SKILL_USE_ALLOWED_TOOLS, NO_DELEGATION_NARRATION_UNLESS_ASKED, ROOT_OWNED_CHILD_RESULT_INSTRUCTION, type RootOwnedChildResultHint, type RootOwnedChildResultHinted, shouldReinforceLoadSkillContinuation, SLASH_COMMAND_ARTIFACT_REMINDER, SYNTHESIZE_DELEGATED_FINDINGS_IN_ROOT_VOICE, withRootOwnedChildResultHint, } from "./conversation-delegation-policy.js";
|
|
176
176
|
export { listRuntimeBuiltinSkillReferenceFiles, listRuntimeBuiltinSkillReferences, readRuntimeBuiltinDirectorySkill, readRuntimeBuiltinFlatSkill, readRuntimeBuiltinSkill, readRuntimeBuiltinSkillEntries, readRuntimeBuiltinSkillReferenceFile, resolveRuntimeBuiltinSkillReferenceFilePath, resolveRuntimeBuiltinSkillsDir, type RuntimeBuiltinSkillEntriesResult, } from "./runtime-builtin-skill-files.js";
|
|
177
177
|
export { createRuntimeProjectFilesClient, getRuntimeProjectFile, getRuntimeProjectFiles, type RuntimeGetProjectFileOptions, type RuntimeProjectFile, type RuntimeProjectFileListItem, runtimeProjectFileListItemSchema, RuntimeProjectFilesApiAuthError, type RuntimeProjectFilesApiOptions, runtimeProjectFileSchema, type RuntimeProjectFilesClient, type RuntimeProjectFilesClientOptions, type RuntimeProjectFilesFetch, type RuntimeProjectFilesTrace, } from "./runtime-project-files-client.js";
|
|
178
|
-
export { createHostedAgentProjectSteering, type HostedAgentProjectSteering, type HostedAgentProjectSteeringLogger, type HostedAgentProjectSteeringOptions, type HostedAgentProjectSteeringOptionsData, hostedAgentProjectSteeringOptionsSchema, } from "./hosted-agent-project-steering.js";
|
|
179
|
-
export { createHostedProjectSteeringAdapter, type HostedProjectSkillIdsContext, type HostedProjectSteeringAdapter, type HostedProjectSteeringAdapterOptions, type HostedProjectSteeringLogger, } from "./hosted-project-steering-adapter.js";
|
|
178
|
+
export { createHostedAgentProjectSteering, createHostedAgentProjectSteering as createAgentServiceProjectSteering, type HostedAgentProjectSteering, type HostedAgentProjectSteering as AgentServiceProjectSteering, type HostedAgentProjectSteeringLogger, type HostedAgentProjectSteeringLogger as AgentServiceProjectSteeringLogger, type HostedAgentProjectSteeringOptions, type HostedAgentProjectSteeringOptions as AgentServiceProjectSteeringOptions, type HostedAgentProjectSteeringOptionsData, type HostedAgentProjectSteeringOptionsData as AgentServiceProjectSteeringOptionsData, hostedAgentProjectSteeringOptionsSchema, } from "./hosted-agent-project-steering.js";
|
|
179
|
+
export { createHostedProjectSteeringAdapter, type HostedProjectSkillIdsContext, type HostedProjectSkillIdsContext as AgentServiceProjectSkillIdsContext, type HostedProjectSteeringAdapter, type HostedProjectSteeringAdapterOptions, type HostedProjectSteeringLogger, } from "./hosted-project-steering-adapter.js";
|
|
180
180
|
export { createRuntimeProjectSkillLoader, type RuntimeLoadedProjectSkill, type RuntimeProjectSkillContext, type RuntimeProjectSkillLoader, type RuntimeProjectSkillLoaderLogger, type RuntimeProjectSkillLoaderOptions, } from "./runtime-project-skill-loader.js";
|
|
181
181
|
export { getRuntimeProjectInstructions, getRuntimeProjectSkillCatalog, loadRuntimeBuiltinSkillCatalog, type RuntimeProjectInstructionsOptions, type RuntimeProjectSkillCatalogOptions, type RuntimeProjectSteeringLookup, } from "./runtime-project-skill-catalog.js";
|
|
182
182
|
export { createRuntimePromptBlock, type RuntimePromptBlockOptions, } from "./runtime-prompt-block.js";
|
|
@@ -190,16 +190,16 @@ export { type ConversationRunChunkMirror, type ConversationRunChunkMirrorApiOpti
|
|
|
190
190
|
export { type ConversationRunStreamMirror, createConversationRunStreamMirror, } from "./conversation-run-stream-mirror.js";
|
|
191
191
|
export { buildDetachedFallbackChunks, type BuildDetachedFallbackChunksInput, type BuildDetachedFallbackMessageInput, buildDetachedFallbackMessageState, buildFinalizedMessageFallbackChunks, type BuildFinalizedMessageFallbackChunksInput, buildFinalizedMessageState, type BuildFinalizedMessageStateInput, type DetachedFallbackMessageState, type FinalizedMessageState, } from "./hosted-finalized-message.js";
|
|
192
192
|
export { type BootstrappedHostedChatExecutionRuntime, cleanupAfterHostedChatExecutionFinalization, createBootstrappedHostedChatExecutionRuntime, type CreateBootstrappedHostedChatExecutionRuntimeInput, createHostedChatExecutionRuntime, createHostedChatExecutionRuntimeBootstrap, type CreateHostedChatExecutionRuntimeBootstrapInput, type CreateHostedChatExecutionRuntimeInput, createHostedChatFinalizeDetachedBuildState, createHostedChatFinalizeResponseBuildState, createHostedChatStreamFinalizationHooks, type HostedChatExecutionLifecycleAdapter, type HostedChatExecutionRootStreamWatchdog, type HostedChatExecutionRunContext, type HostedChatExecutionRuntime, type HostedChatExecutionRuntimeBootstrap, type HostedChatExecutionRuntimeLogger, toHostedChatExecutionFinalState, } from "./hosted-chat-execution-runtime.js";
|
|
193
|
-
export { type PreparedHostedChatExecution, type PreparedHostedChatExecutionDetachedInput, type PreparedHostedChatExecutionRuntimeOptions, type PreparedHostedChatExecutionStreamInput, runPreparedHostedChatExecutionDetached, streamPreparedHostedChatExecutionToAgUiResponse, } from "./prepared-hosted-chat-execution.js";
|
|
194
|
-
export { createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions, type CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput, } from "./veryfront-cloud-prepared-hosted-chat-execution-runtime.js";
|
|
195
|
-
export { createVeryfrontCloudHostedChatExecutionRootRunOptions, prepareVeryfrontCloudHostedChatExecution, type PrepareVeryfrontCloudHostedChatExecutionInput, type VeryfrontCloudHostedChatExecutionPreparationLogger, } from "./veryfront-cloud-hosted-chat-execution-preparation.js";
|
|
193
|
+
export { type PreparedHostedChatExecution, type PreparedHostedChatExecution as PreparedAgentServiceChatExecution, type PreparedHostedChatExecutionDetachedInput, type PreparedHostedChatExecutionDetachedInput as PreparedAgentServiceChatExecutionDetachedInput, type PreparedHostedChatExecutionRuntimeOptions, type PreparedHostedChatExecutionRuntimeOptions as PreparedAgentServiceChatExecutionRuntimeOptions, type PreparedHostedChatExecutionStreamInput, type PreparedHostedChatExecutionStreamInput as PreparedAgentServiceChatExecutionStreamInput, runPreparedHostedChatExecutionDetached, runPreparedHostedChatExecutionDetached as runPreparedAgentServiceChatExecutionDetached, streamPreparedHostedChatExecutionToAgUiResponse, streamPreparedHostedChatExecutionToAgUiResponse as streamPreparedAgentServiceChatExecutionToAgUiResponse, } from "./prepared-hosted-chat-execution.js";
|
|
194
|
+
export { createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions, createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions as createVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptions, type CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput, type CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput as CreateVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptionsInput, } from "./veryfront-cloud-prepared-hosted-chat-execution-runtime.js";
|
|
195
|
+
export { createVeryfrontCloudHostedChatExecutionRootRunOptions, createVeryfrontCloudHostedChatExecutionRootRunOptions as createVeryfrontCloudAgentServiceChatExecutionRootRunOptions, prepareVeryfrontCloudHostedChatExecution, prepareVeryfrontCloudHostedChatExecution as prepareVeryfrontCloudAgentServiceChatExecution, type PrepareVeryfrontCloudHostedChatExecutionInput, type PrepareVeryfrontCloudHostedChatExecutionInput as PrepareVeryfrontCloudAgentServiceChatExecutionInput, type VeryfrontCloudHostedChatExecutionPreparationLogger, type VeryfrontCloudHostedChatExecutionPreparationLogger as VeryfrontCloudAgentServiceChatExecutionPreparationLogger, } from "./veryfront-cloud-hosted-chat-execution-preparation.js";
|
|
196
196
|
export { finalizeHostedDetached, type FinalizeHostedDetachedOptions, finalizeHostedResponse, type FinalizeHostedResponseOptions, type HostedDetachedFinalizationState, type HostedResponseFinalizationState, type HostedTerminalError, } from "./hosted-stream-finalization.js";
|
|
197
197
|
export { getEmptyHostedFinalizedMessageTerminalError, getHostedStreamErrorText, type HostedStreamTerminalError, shouldFailEmptyHostedFinalizedMessage, } from "./hosted-stream-terminal-error.js";
|
|
198
198
|
export { type ActiveConversationRunStatus, appendConversationRunEvents, AppendConversationRunEventsError, type AppendConversationRunEventsResponse, AppendConversationRunEventsResponseSchema, CompleteConversationRunResponseSchema, type ConversationAgentRunUsage, type ConversationRunAppendCursorResyncResult, type ConversationRunAppendExecutionOutcome, type ConversationRunAppendFailureOutcome, type ConversationRunAppendRecoveryOutcome, type ConversationRunBatchFlushOutcome, type ConversationRunEventQueueController, type ConversationRunProjection, ConversationRunProjectionSchema, type ConversationRunQueueFlushOutcome, ConversationRunStatusSchema, type ConversationRunTargets, ConversationRunTargetsSchema, ConversationRunTerminalStateError, createConversationAgentRun, createConversationRunEventQueueController, finalizeConversationAgentRun, flushConversationRunEventBatches, flushConversationRunEventQueue, getConversationRun, isActiveConversationRunStatus, isAppendableConversationRunProjection, isCursorMismatchConversationRunAppendError, isIgnorableConversationRunAppendError, monitorConversationRunStatus, parseAppendConversationRunEventsErrorBody, recoverConversationRunAppendExecution, recoverConversationRunAppendFailure, recoverConversationRunCursorMismatch, resolveConversationRunTargets, resyncConversationRunAppendCursor, type TerminalConversationRunStatus, } from "./durable.js";
|
|
199
199
|
export { type AppendExternalAgentWorkerRunEventsInput, type ClaimExternalAgentWorkerRunInput, type CompleteExternalAgentWorkerRunInput, createExternalAgentWorkerClient, type ExternalAgentWorker, type ExternalAgentWorkerClient, type ExternalAgentWorkerClientOptions, type ExternalAgentWorkerRequestSnapshot, ExternalAgentWorkerRequestSnapshotSchema, type ExternalAgentWorkerRun, ExternalAgentWorkerRunSchema, ExternalAgentWorkerSchema, type ExternalAgentWorkerSession, ExternalAgentWorkerSessionSchema, type RecordExternalAgentWorkerSessionInput, type RegisterExternalAgentWorkerInput, } from "./external-agent-worker-client.js";
|
|
200
200
|
export { buildInvokeAgentChildRunLifecycleCustomEvent, buildInvokeAgentChildRunProgressEvents, buildInvokeAgentChildRunStateDelta, type InvokeAgentChildRunLifecycleCustomEvent, InvokeAgentChildRunLifecycleCustomEventSchema, type InvokeAgentChildRunLifecycleValue, InvokeAgentChildRunLifecycleValueSchema, type InvokeAgentChildRunProgressEvent, type InvokeAgentChildRunProgressInput, type InvokeAgentChildRunStateDelta, InvokeAgentChildRunStateDeltaSchema, publishInvokeAgentChildRunProgress, } from "./invoke-agent-child-runs.js";
|
|
201
201
|
export { type HostedChildExecutionLifecycleOptions, type HostedChildExecutionLifecycleResult, type HostedChildLifecycleAdapter, type HostedChildLifecycleRunnerOptions, type HostedChildLifecycleRunResult, type HostedChildLifecycleTerminalState, runHostedChildExecutionLifecycle, runHostedChildLifecycle, shouldSkipHostedChildTerminalPersistence, } from "./hosted-child-lifecycle.js";
|
|
202
|
-
export { appendHostedChildMirrorChunk, closeHostedChildReasoningSegment, closeHostedChildTextSegment, createHostedChildMirrorContext, type HostedChildChunkMirror, type HostedChildMirrorContext, type HostedChildMirrorPart, type HostedChildMirrorState, isAlreadyMirroredHostedChunk, toMirroredHostedStreamPart, } from "./hosted-child-mirror.js";
|
|
202
|
+
export { appendHostedChildMirrorChunk, appendHostedChildMirrorChunk as appendAgentServiceChildMirrorChunk, closeHostedChildReasoningSegment, closeHostedChildReasoningSegment as closeAgentServiceChildReasoningSegment, closeHostedChildTextSegment, closeHostedChildTextSegment as closeAgentServiceChildTextSegment, createHostedChildMirrorContext, createHostedChildMirrorContext as createAgentServiceChildMirrorContext, type HostedChildChunkMirror, type HostedChildChunkMirror as AgentServiceChildChunkMirror, type HostedChildMirrorContext, type HostedChildMirrorContext as AgentServiceChildMirrorContext, type HostedChildMirrorPart, type HostedChildMirrorPart as AgentServiceChildMirrorPart, type HostedChildMirrorState, type HostedChildMirrorState as AgentServiceChildMirrorState, isAlreadyMirroredHostedChunk, isAlreadyMirroredHostedChunk as isAlreadyMirroredAgentServiceChunk, toMirroredHostedStreamPart, toMirroredHostedStreamPart as toMirroredAgentServiceStreamPart, } from "./hosted-child-mirror.js";
|
|
203
203
|
export { convertCompactedProviderMessagesToChildForkRuntimeMessages, type HostedChildForkRuntimeStepMessages, type HostedChildForkRuntimeStepSystemResolver, prepareHostedChildForkRuntimeStepMessages, type PrepareHostedChildForkRuntimeStepMessagesInput, } from "./hosted-child-fork-step-message-preparation.js";
|
|
204
204
|
export { type HostedChildRunStatusMonitor, type StartedHostedChildForkRuntime, startHostedChildForkRuntimeWithHostTools, type StartHostedChildForkRuntimeWithHostToolsInput, } from "./hosted-child-fork-runtime-start.js";
|
|
205
205
|
export { type HostedChildRunIdentifiers, type HostedChildSameTurnRetryBlockSignal, type HostedChildTerminalErrorCode, hostedChildTerminalErrorCodes, HostedChildTerminalStateError, type HostedChildTerminalStatus, isHostedChildTerminalErrorCode, monitorHostedChildRunStatus, type MonitorHostedChildRunStatusInput, resolveHostedChildTerminalErrorCode, shouldBlockHostedChildSameTurnRetry, } from "./hosted-child-status.js";
|
|
@@ -217,10 +217,10 @@ export { createDetachedRunShutdownLifecycle, createDetachedRunTracker, type Deta
|
|
|
217
217
|
export { type AgUiCancelHandlerOptions, type AgUiResumeHandlerOptions, type AgUiResumeSignal, AgUiResumeSignalSchema, createAgUiCancelHandler, createAgUiResumeHandler, } from "./ag-ui-run-control.js";
|
|
218
218
|
export { type AgUiSseEvent, createAgUiRunErrorEvent, createAgUiSseErrorResponse, createAgUiSseResponse, normalizeAgUiMessages, parseAgUiRequest, parseAgUiRequestOrError, } from "./ag-ui-host-support.js";
|
|
219
219
|
export { type AgUiContextItem, type AgUiHandlerConfigWithAgent, type AgUiHandlerOptions, type AgUiInjectedTool, type AgUiRequest, AgUiRequestSchema, createAgUiHandler, } from "./ag-ui-handler.js";
|
|
220
|
-
export { createHostedFormInputTool, type HostedFormInputToolContext, } from "./hosted-form-input-tool.js";
|
|
220
|
+
export { createHostedFormInputTool, createHostedFormInputTool as createAgentServiceFormInputTool, type HostedFormInputToolContext, type HostedFormInputToolContext as AgentServiceFormInputToolContext, } from "./hosted-form-input-tool.js";
|
|
221
221
|
export { buildInputRequestLifecycleDataEvent, createInputRequest, createInputRequestRequestSchema, createInputRequestResponseSchema, type FormInputToolInput, formInputToolInputSchema, getInputRequest, getInputRequestResponseSchema, inputRequestLifecycleDataEventSchema, type InputRequestOutput, inputRequestOutputSchema, inputRequestRestSchema, inputResponseRestSchema, inputResponseValuesSchema, } from "./input-request-protocol.js";
|
|
222
222
|
export { type DurableHumanInputFlowResult, executeDurableHumanInputFlow, type ExecuteDurableHumanInputFlowOptions, type HumanInputField, type HumanInputFieldInput, HumanInputFieldSchema, type HumanInputOption, HumanInputOptionSchema, type HumanInputPendingRequest, HumanInputPendingRequestSchema, type HumanInputRequest, type HumanInputRequestInput, HumanInputRequestSchema, type HumanInputResult, HumanInputResultSchema, HumanInputResumeError, type HumanInputResumeValue, InvalidHumanInputResultError, waitForDurableHumanInputResolution, type WaitForDurableHumanInputResolutionOptions, waitForHumanInput, type WaitForHumanInputOptions, } from "./human-input.js";
|
|
223
223
|
export { type ChatHandlerBeforeStream, type ChatHandlerBeforeStreamContext, type ChatHandlerBeforeStreamResult, type ChatHandlerConfigWithAgent, type ChatHandlerMessageInput, type ChatHandlerOptions, createChatHandler, } from "./chat-handler.js";
|
|
224
224
|
export { AgentRuntime, getProviderToolProfile, type ProviderToolCompatOptions, type ProviderToolCompatProvider, type ProviderToolProfile, RunAlreadyExistsError, RunCancelledError, RunNotActiveError, RunResumeSessionManager, type RunResumeSessionManagerOptions, type RunSessionStatus, sanitizeProviderToolSchema, selectProviderCompatibleToolNames, selectProviderCompatibleTools, type SubmitResumeValueOutcome, WaitConflictError, WaitNotPendingError, } from "./runtime/index.js";
|
|
225
|
-
export { createHostedServiceAuth, getHostedServiceTokenFromRequest, type HostedServiceAuth, type HostedServiceAuthConfig, type HostedServiceAuthenticatedRequest, HostedServiceAuthError, type HostedServiceAuthErrorCode, type HostedServiceAuthFetch, type HostedServiceAuthLogger, type HostedServiceAuthOptions, type HostedServiceAuthTrace, type HostedServiceJwtError, type HostedServiceJwtResult, type HostedServiceProjectAccessError, type HostedServiceProjectAccessResult, isHostedServiceAuthError, } from "./hosted-service-auth.js";
|
|
225
|
+
export { createHostedServiceAuth, createHostedServiceAuth as createAgentServiceAuth, getHostedServiceTokenFromRequest, getHostedServiceTokenFromRequest as getAgentServiceTokenFromRequest, type HostedServiceAuth, type HostedServiceAuth as AgentServiceAuth, type HostedServiceAuthConfig, type HostedServiceAuthConfig as AgentServiceAuthConfig, type HostedServiceAuthenticatedRequest, type HostedServiceAuthenticatedRequest as AgentServiceAuthenticatedRequest, HostedServiceAuthError, HostedServiceAuthError as AgentServiceAuthError, type HostedServiceAuthErrorCode, type HostedServiceAuthErrorCode as AgentServiceAuthErrorCode, type HostedServiceAuthFetch, type HostedServiceAuthFetch as AgentServiceAuthFetch, type HostedServiceAuthLogger, type HostedServiceAuthLogger as AgentServiceAuthLogger, type HostedServiceAuthOptions, type HostedServiceAuthOptions as AgentServiceAuthOptions, type HostedServiceAuthTrace, type HostedServiceAuthTrace as AgentServiceAuthTrace, type HostedServiceJwtError, type HostedServiceJwtError as AgentServiceJwtError, type HostedServiceJwtResult, type HostedServiceJwtResult as AgentServiceJwtResult, type HostedServiceProjectAccessError, type HostedServiceProjectAccessError as AgentServiceProjectAccessError, type HostedServiceProjectAccessResult, type HostedServiceProjectAccessResult as AgentServiceProjectAccessResult, isHostedServiceAuthError, isHostedServiceAuthError as isAgentServiceAuthError, } from "./hosted-service-auth.js";
|
|
226
226
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/agent/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/agent/index.ts"],"names":[],"mappings":"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"}
|
package/esm/src/agent/index.js
CHANGED
|
@@ -97,8 +97,8 @@ export { agent } from "./factory.js";
|
|
|
97
97
|
export { isResponseLike } from "./response-like.js";
|
|
98
98
|
export { defineAgentService, } from "./agent-service.js";
|
|
99
99
|
export { createAgentServiceServerRuntime, startNodeAgentServiceServer, } from "./agent-service-server.js";
|
|
100
|
-
export { createDefaultHostedChatRuntime, } from "./default-hosted-chat-runtime.js";
|
|
101
|
-
export { createDefaultHostedProjectSteeringRefresh, fetchDefaultHostedProjectSteering, } from "./default-hosted-project-steering-refresh.js";
|
|
100
|
+
export { createDefaultHostedChatRuntime, createDefaultHostedChatRuntime as createDefaultAgentServiceChatRuntime, } from "./default-hosted-chat-runtime.js";
|
|
101
|
+
export { createDefaultHostedProjectSteeringRefresh, createDefaultHostedProjectSteeringRefresh as createDefaultAgentServiceProjectSteeringRefresh, fetchDefaultHostedProjectSteering, fetchDefaultHostedProjectSteering as fetchDefaultAgentServiceProjectSteering, } from "./default-hosted-project-steering-refresh.js";
|
|
102
102
|
export { createAgentServiceRuntime, createHostedAgentServiceRuntime, startNodeAgentService, startNodeHostedAgentService, } from "./hosted-agent-service-runtime.js";
|
|
103
103
|
export { agentServiceConfigSchema, hostedAgentServiceConfigSchema, parseAgentServiceConfig, parseHostedAgentServiceConfig, } from "./hosted-agent-service-config.js";
|
|
104
104
|
export { loadAgentServiceEnvFiles, loadHostedAgentServiceEnvFiles, } from "./hosted-agent-service-env-files.js";
|
|
@@ -113,11 +113,11 @@ export { AgUiRuntimeContextItemSchema, AgUiRuntimeInjectedToolSchema, AgUiRuntim
|
|
|
113
113
|
export { buildAgentRunTraceAttributes, buildExecuteToolTraceAttributes, buildFinalizedAgentRunTraceAttributes, buildInvokeAgentTraceAttributes, filterAgentTraceAttributes, isAgentTraceAttributeValue, } from "./agent-trace-attributes.js";
|
|
114
114
|
export { createHostedChatRuntimeAgentAdapter, } from "./hosted-chat-runtime-agent-adapter.js";
|
|
115
115
|
export { createHostedAgentRunSpanController, createHostedRootRunLifecycleRuntimeAdapter, } from "./hosted-agent-run-lifecycle.js";
|
|
116
|
-
export { createHostedAgentServiceRouteSet, } from "./hosted-agent-service-routes.js";
|
|
116
|
+
export { createHostedAgentServiceRouteSet, createHostedAgentServiceRouteSet as createAgentServiceRouteSet, } from "./hosted-agent-service-routes.js";
|
|
117
117
|
export { createHostedRuntimeStateResolver, } from "./hosted-runtime-state-resolver.js";
|
|
118
118
|
export { executeHostedDurableChatRun, resolveHostedDurableRunSetupErrorResponse, } from "./hosted-durable-chat-run-start.js";
|
|
119
|
-
export { buildParsedHostedChatRequest, parseHostedChatRequestFromRequest, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest, } from "./hosted-chat-request-parser.js";
|
|
120
|
-
export { buildParsedHostedAgUiRequest, createHostedAgUiValidationErrorResponse, deriveHostedAgUiChatContext, hostedAgUiChatForwardedConfigSchema, } from "./hosted-ag-ui-chat-request.js";
|
|
119
|
+
export { buildParsedHostedChatRequest, buildParsedHostedChatRequest as buildParsedAgentServiceChatRequest, parseHostedChatRequestFromRequest, parseHostedChatRequestFromRequest as parseAgentServiceChatRequestFromRequest, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest, parseRuntimeAgentRunInvocationHostedChatRequestFromRequest as parseRuntimeAgentRunInvocationAgentServiceChatRequestFromRequest, } from "./hosted-chat-request-parser.js";
|
|
120
|
+
export { buildParsedHostedAgUiRequest, buildParsedHostedAgUiRequest as buildParsedAgentServiceAgUiRequest, createHostedAgUiValidationErrorResponse, createHostedAgUiValidationErrorResponse as createAgentServiceAgUiValidationErrorResponse, deriveHostedAgUiChatContext, deriveHostedAgUiChatContext as deriveAgentServiceAgUiChatContext, hostedAgUiChatForwardedConfigSchema, hostedAgUiChatForwardedConfigSchema as agentServiceAgUiChatForwardedConfigSchema, } from "./hosted-ag-ui-chat-request.js";
|
|
121
121
|
export { buildHostedChatRequestForwardedPropsFromRuntimeAgentInvocation, buildHostedChatRequestFromRuntimeAgentInvocation, buildHostedChatRequestInputFromRuntimeAgentInvocation, hostedChatRequestSchema, hostedChatRuntimeOverridesSchema, hostedDurableRootRunDescriptorSchema, } from "./hosted-chat-request.js";
|
|
122
122
|
export { getForwardedHostedModelId, getForwardedHostedRuntimeOverrides, resolveHostedRuntimeRequestConfig, resolveHostedRuntimeThinkingOverride, } from "./hosted-runtime-request-config.js";
|
|
123
123
|
export { parseRuntimeAgentRunInvocation, parseRuntimeAgentRunInvocationOrError, RuntimeAgentContextItemSchema, RuntimeAgentIdSchema, RuntimeAgentProjectContextSchema, RuntimeAgentRunContextSchema, RuntimeAgentRunIdSchema, RuntimeAgentRunInvocationSchema, RuntimeAgentServiceIdSchema, RuntimeAgentSourceContextSchema, RuntimeAgentTargetKindSchema, RuntimeAgentToolCallIdSchema, RuntimeAgentToolNameSchema, RuntimeAgentToolSchema, RuntimeAgentValidatedClaimsSchema, validateRuntimeAgentTargetSelection, } from "./runtime-agent-invocation-contract.js";
|
|
@@ -142,7 +142,7 @@ export { createHostedChildForkRunContext, createHostedDurableChildForkRunContext
|
|
|
142
142
|
export { executeHostedChildForkStream, finalizeHostedChildForkCompletion, handleHostedChildForkFailure, handleHostedChildForkStreamPart, } from "./hosted-child-fork-stream-execution.js";
|
|
143
143
|
export { createConversationRunContext, } from "./conversation-run-context.js";
|
|
144
144
|
export { createConversationRootRunContext, createConversationRootRunStartAdapter, prepareConversationRootRunContext, startConversationRootRun, } from "./conversation-root-run-context.js";
|
|
145
|
-
export { prepareConversationRootRunLifecycle, prepareHostedConversationRootRunContext, } from "./conversation-root-run-lifecycle.js";
|
|
145
|
+
export { prepareConversationRootRunLifecycle, prepareHostedConversationRootRunContext, prepareHostedConversationRootRunContext as prepareAgentServiceConversationRootRunContext, } from "./conversation-root-run-lifecycle.js";
|
|
146
146
|
export { bootstrapConversationAgentRun, ConversationMessageRecordSchema, ConversationRecordSchema, createConversationMessage, createConversationRecord, ensureConversationProjectLink, fetchConversationRecord, findLatestUserConversationMessageContext, persistConversationUserMessage, persistLatestConversationUserMessage, } from "./conversation-bootstrap.js";
|
|
147
147
|
export { buildHostedDurableChildInvokeFailureResult, buildHostedDurableChildInvokeSuccessResult, buildHostedDurableChildInvokeTerminalFailureResult, createHostedDurableChildInvokeTraceRecorder, executeHostedDurableChildFork, executeHostedLocalChildInvoke, } from "./hosted-durable-child-fork-execution.js";
|
|
148
148
|
export { bootstrapHostedChildRun, buildHostedChildConversationBody, } from "./hosted-child-bootstrap.js";
|
|
@@ -157,14 +157,14 @@ export { formatChildRunStreamPartError, isChildRunAbortError, throwIfChildRunAbo
|
|
|
157
157
|
export { AgentRuntimeMessageConversionError, convertAgentRuntimeMessagesToProviderMessages, convertProviderMessagesToAgentRuntimeMessages, createToolResultPart, getAgentRuntimeTextPart, getAgentRuntimeToolCallPart, getAgentRuntimeToolResultPart, } from "./agent-runtime-message-adapter.js";
|
|
158
158
|
export { resolveRuntimeMessageFileUrls, } from "./runtime-message-file-url-refresh.js";
|
|
159
159
|
export { prepareAgentRuntimeMessagesFromUiMessages, } from "./runtime-message-preparation.js";
|
|
160
|
-
export { normalizeParsedHostedChatRequest, prepareHostedChatExecution, prepareHostedChatRuntimeCreationOptions, prepareHostedChatRuntimeMessages, } from "./hosted-chat-preparation.js";
|
|
160
|
+
export { normalizeParsedHostedChatRequest, normalizeParsedHostedChatRequest as normalizeParsedAgentServiceChatRequest, prepareHostedChatExecution, prepareHostedChatExecution as prepareAgentServiceChatExecution, prepareHostedChatRuntimeCreationOptions, prepareHostedChatRuntimeCreationOptions as prepareAgentServiceChatRuntimeCreationOptions, prepareHostedChatRuntimeMessages, prepareHostedChatRuntimeMessages as prepareAgentServiceChatRuntimeMessages, } from "./hosted-chat-preparation.js";
|
|
161
161
|
export { getRuntimeUploadUrl, } from "./runtime-upload-url-client.js";
|
|
162
162
|
export { closeChildRunExecutionBuffers, finalizeChildRunExecutionResources, } from "./child-run-execution-cleanup.js";
|
|
163
163
|
export { createHostedChildPendingToolLifecycle, createHostedChildPendingToolLifecycleLogger, } from "./hosted-child-pending-tool-lifecycle.js";
|
|
164
164
|
export { composeAbortSignals, HOSTED_CHILD_STREAM_TIMEOUT_TOKEN, HostedChildStreamIdleTimeoutError, resolveHostedChildPromiseWithTimeout, resolveHostedChildStreamWatchdogState, withHostedChildStreamIdleTimeout, } from "./hosted-child-stream-watchdog.js";
|
|
165
165
|
export { DEFAULT_HOSTED_CHILD_AGENT_ID, hostedChildForkToolInputSchema, resolveHostedChildForkRuntimeConfig, resolveHostedChildForkThinkingOverride, } from "./hosted-child-tool-input.js";
|
|
166
166
|
export { createHostedChildInvokeTool, } from "./hosted-child-invoke-tool.js";
|
|
167
|
-
export { createDefaultHostedInvokeAgentTool, defaultHostedInvokeAgentInputSchema, defaultHostedInvokeAgentSelectionSchema, executeDefaultHostedInvokeAgentTool, } from "./default-hosted-invoke-agent-tool.js";
|
|
167
|
+
export { createDefaultHostedInvokeAgentTool, createDefaultHostedInvokeAgentTool as createDefaultAgentServiceInvokeAgentTool, defaultHostedInvokeAgentInputSchema, defaultHostedInvokeAgentSelectionSchema, executeDefaultHostedInvokeAgentTool, executeDefaultHostedInvokeAgentTool as executeDefaultAgentServiceInvokeAgentTool, } from "./default-hosted-invoke-agent-tool.js";
|
|
168
168
|
export { buildDefaultHostedChildForkToolSet, buildHostedChildToolDescription, DEFAULT_HOSTED_CHILD_EXCLUDED_TOOL_NAMES, DEFAULT_HOSTED_CHILD_REQUESTED_TOOL_COMPANIONS, DEFAULT_HOSTED_CHILD_SANDBOX_REQUIRED_CUE_PATTERN, expandHostedChildRequestedTools, prepareDefaultHostedChildForkRuntimeTools, prepareDefaultHostedChildForkToolAssembly, sanitizeDefaultHostedChildRequestedTools, sanitizeHostedChildRequestedTools, selectDefaultHostedChildForkRuntimeTools, selectHostedChildForkRuntimeTools, shouldPruneSandboxToolsFromHostedChildRequest, } from "./hosted-child-requested-tools.js";
|
|
169
169
|
export { getHostedChildWrittenArtifactPath, isHostedChildCreateFileAlreadyExistsResult, isHostedChildTextProjectArtifactPrompt, normalizeHostedChildArtifactPath, withHostedChildRerunnableFileWriteFallbacks, } from "./hosted-child-artifact-support.js";
|
|
170
170
|
export { buildDefaultResearchArtifactPathReminder, buildDefaultResearchArtifactPaths, shouldInjectDefaultResearchArtifactPath, withDefaultResearchArtifactPath, } from "./default-research-artifact-policy.js";
|
|
@@ -173,7 +173,7 @@ export { containsExactArtifactPathValue, evaluateSlashCommandArtifactPolicy, } f
|
|
|
173
173
|
export { addFirstTurnStarterIntentRootOwnershipReminder, addLoadSkillContinuationReminder, addSlashCommandArtifactReminder, buildInvokeAgentFollowupInstruction, buildRootOwnedChildResultHint, buildRootOwnedDelegatedFindingsInstruction, buildStarterIntentRootOwnershipBlockMessage, buildStarterIntentRootOwnershipReminder, DELEGATE_ONLY_WHEN_MATERIALLY_HELPFUL, evaluateStarterIntentTurnPolicy, extractStarterIntentId, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_BLOCK_MESSAGE, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_CONTEXT_KEY, FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_REMINDER, isStarterIntentRootOwnershipRequired, KEEP_ROOT_ASSISTANT_VISIBLE_OWNER, LOAD_SKILL_CONTINUATION_REMINDER, LOAD_SKILL_CONTINUE_SAME_TURN, LOAD_SKILL_CONTINUE_SAME_TURN_NOW, LOAD_SKILL_DELEGATION_THRESHOLD, LOAD_SKILL_OVERRIDE_FORWARDING, LOAD_SKILL_ROOT_OWNERSHIP, LOAD_SKILL_TOOL_INTERSECTION, LOAD_SKILL_USE_ALLOWED_TOOLS, NO_DELEGATION_NARRATION_UNLESS_ASKED, ROOT_OWNED_CHILD_RESULT_INSTRUCTION, shouldReinforceLoadSkillContinuation, SLASH_COMMAND_ARTIFACT_REMINDER, SYNTHESIZE_DELEGATED_FINDINGS_IN_ROOT_VOICE, withRootOwnedChildResultHint, } from "./conversation-delegation-policy.js";
|
|
174
174
|
export { listRuntimeBuiltinSkillReferenceFiles, listRuntimeBuiltinSkillReferences, readRuntimeBuiltinDirectorySkill, readRuntimeBuiltinFlatSkill, readRuntimeBuiltinSkill, readRuntimeBuiltinSkillEntries, readRuntimeBuiltinSkillReferenceFile, resolveRuntimeBuiltinSkillReferenceFilePath, resolveRuntimeBuiltinSkillsDir, } from "./runtime-builtin-skill-files.js";
|
|
175
175
|
export { createRuntimeProjectFilesClient, getRuntimeProjectFile, getRuntimeProjectFiles, runtimeProjectFileListItemSchema, RuntimeProjectFilesApiAuthError, runtimeProjectFileSchema, } from "./runtime-project-files-client.js";
|
|
176
|
-
export { createHostedAgentProjectSteering, hostedAgentProjectSteeringOptionsSchema, } from "./hosted-agent-project-steering.js";
|
|
176
|
+
export { createHostedAgentProjectSteering, createHostedAgentProjectSteering as createAgentServiceProjectSteering, hostedAgentProjectSteeringOptionsSchema, } from "./hosted-agent-project-steering.js";
|
|
177
177
|
export { createHostedProjectSteeringAdapter, } from "./hosted-project-steering-adapter.js";
|
|
178
178
|
export { createRuntimeProjectSkillLoader, } from "./runtime-project-skill-loader.js";
|
|
179
179
|
export { getRuntimeProjectInstructions, getRuntimeProjectSkillCatalog, loadRuntimeBuiltinSkillCatalog, } from "./runtime-project-skill-catalog.js";
|
|
@@ -188,16 +188,16 @@ export { createConversationRunChunkMirror, createHostedConversationRunChunkMirro
|
|
|
188
188
|
export { createConversationRunStreamMirror, } from "./conversation-run-stream-mirror.js";
|
|
189
189
|
export { buildDetachedFallbackChunks, buildDetachedFallbackMessageState, buildFinalizedMessageFallbackChunks, buildFinalizedMessageState, } from "./hosted-finalized-message.js";
|
|
190
190
|
export { cleanupAfterHostedChatExecutionFinalization, createBootstrappedHostedChatExecutionRuntime, createHostedChatExecutionRuntime, createHostedChatExecutionRuntimeBootstrap, createHostedChatFinalizeDetachedBuildState, createHostedChatFinalizeResponseBuildState, createHostedChatStreamFinalizationHooks, toHostedChatExecutionFinalState, } from "./hosted-chat-execution-runtime.js";
|
|
191
|
-
export { runPreparedHostedChatExecutionDetached, streamPreparedHostedChatExecutionToAgUiResponse, } from "./prepared-hosted-chat-execution.js";
|
|
192
|
-
export { createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions, } from "./veryfront-cloud-prepared-hosted-chat-execution-runtime.js";
|
|
193
|
-
export { createVeryfrontCloudHostedChatExecutionRootRunOptions, prepareVeryfrontCloudHostedChatExecution, } from "./veryfront-cloud-hosted-chat-execution-preparation.js";
|
|
191
|
+
export { runPreparedHostedChatExecutionDetached, runPreparedHostedChatExecutionDetached as runPreparedAgentServiceChatExecutionDetached, streamPreparedHostedChatExecutionToAgUiResponse, streamPreparedHostedChatExecutionToAgUiResponse as streamPreparedAgentServiceChatExecutionToAgUiResponse, } from "./prepared-hosted-chat-execution.js";
|
|
192
|
+
export { createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions, createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions as createVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptions, } from "./veryfront-cloud-prepared-hosted-chat-execution-runtime.js";
|
|
193
|
+
export { createVeryfrontCloudHostedChatExecutionRootRunOptions, createVeryfrontCloudHostedChatExecutionRootRunOptions as createVeryfrontCloudAgentServiceChatExecutionRootRunOptions, prepareVeryfrontCloudHostedChatExecution, prepareVeryfrontCloudHostedChatExecution as prepareVeryfrontCloudAgentServiceChatExecution, } from "./veryfront-cloud-hosted-chat-execution-preparation.js";
|
|
194
194
|
export { finalizeHostedDetached, finalizeHostedResponse, } from "./hosted-stream-finalization.js";
|
|
195
195
|
export { getEmptyHostedFinalizedMessageTerminalError, getHostedStreamErrorText, shouldFailEmptyHostedFinalizedMessage, } from "./hosted-stream-terminal-error.js";
|
|
196
196
|
export { appendConversationRunEvents, AppendConversationRunEventsError, AppendConversationRunEventsResponseSchema, CompleteConversationRunResponseSchema, ConversationRunProjectionSchema, ConversationRunStatusSchema, ConversationRunTargetsSchema, ConversationRunTerminalStateError, createConversationAgentRun, createConversationRunEventQueueController, finalizeConversationAgentRun, flushConversationRunEventBatches, flushConversationRunEventQueue, getConversationRun, isActiveConversationRunStatus, isAppendableConversationRunProjection, isCursorMismatchConversationRunAppendError, isIgnorableConversationRunAppendError, monitorConversationRunStatus, parseAppendConversationRunEventsErrorBody, recoverConversationRunAppendExecution, recoverConversationRunAppendFailure, recoverConversationRunCursorMismatch, resolveConversationRunTargets, resyncConversationRunAppendCursor, } from "./durable.js";
|
|
197
197
|
export { createExternalAgentWorkerClient, ExternalAgentWorkerRequestSnapshotSchema, ExternalAgentWorkerRunSchema, ExternalAgentWorkerSchema, ExternalAgentWorkerSessionSchema, } from "./external-agent-worker-client.js";
|
|
198
198
|
export { buildInvokeAgentChildRunLifecycleCustomEvent, buildInvokeAgentChildRunProgressEvents, buildInvokeAgentChildRunStateDelta, InvokeAgentChildRunLifecycleCustomEventSchema, InvokeAgentChildRunLifecycleValueSchema, InvokeAgentChildRunStateDeltaSchema, publishInvokeAgentChildRunProgress, } from "./invoke-agent-child-runs.js";
|
|
199
199
|
export { runHostedChildExecutionLifecycle, runHostedChildLifecycle, shouldSkipHostedChildTerminalPersistence, } from "./hosted-child-lifecycle.js";
|
|
200
|
-
export { appendHostedChildMirrorChunk, closeHostedChildReasoningSegment, closeHostedChildTextSegment, createHostedChildMirrorContext, isAlreadyMirroredHostedChunk, toMirroredHostedStreamPart, } from "./hosted-child-mirror.js";
|
|
200
|
+
export { appendHostedChildMirrorChunk, appendHostedChildMirrorChunk as appendAgentServiceChildMirrorChunk, closeHostedChildReasoningSegment, closeHostedChildReasoningSegment as closeAgentServiceChildReasoningSegment, closeHostedChildTextSegment, closeHostedChildTextSegment as closeAgentServiceChildTextSegment, createHostedChildMirrorContext, createHostedChildMirrorContext as createAgentServiceChildMirrorContext, isAlreadyMirroredHostedChunk, isAlreadyMirroredHostedChunk as isAlreadyMirroredAgentServiceChunk, toMirroredHostedStreamPart, toMirroredHostedStreamPart as toMirroredAgentServiceStreamPart, } from "./hosted-child-mirror.js";
|
|
201
201
|
export { convertCompactedProviderMessagesToChildForkRuntimeMessages, prepareHostedChildForkRuntimeStepMessages, } from "./hosted-child-fork-step-message-preparation.js";
|
|
202
202
|
export { startHostedChildForkRuntimeWithHostTools, } from "./hosted-child-fork-runtime-start.js";
|
|
203
203
|
export { hostedChildTerminalErrorCodes, HostedChildTerminalStateError, isHostedChildTerminalErrorCode, monitorHostedChildRunStatus, resolveHostedChildTerminalErrorCode, shouldBlockHostedChildSameTurnRetry, } from "./hosted-child-status.js";
|
|
@@ -213,9 +213,9 @@ export { createDetachedRunShutdownLifecycle, createDetachedRunTracker, } from ".
|
|
|
213
213
|
export { AgUiResumeSignalSchema, createAgUiCancelHandler, createAgUiResumeHandler, } from "./ag-ui-run-control.js";
|
|
214
214
|
export { createAgUiRunErrorEvent, createAgUiSseErrorResponse, createAgUiSseResponse, normalizeAgUiMessages, parseAgUiRequest, parseAgUiRequestOrError, } from "./ag-ui-host-support.js";
|
|
215
215
|
export { AgUiRequestSchema, createAgUiHandler, } from "./ag-ui-handler.js";
|
|
216
|
-
export { createHostedFormInputTool, } from "./hosted-form-input-tool.js";
|
|
216
|
+
export { createHostedFormInputTool, createHostedFormInputTool as createAgentServiceFormInputTool, } from "./hosted-form-input-tool.js";
|
|
217
217
|
export { buildInputRequestLifecycleDataEvent, createInputRequest, createInputRequestRequestSchema, createInputRequestResponseSchema, formInputToolInputSchema, getInputRequest, getInputRequestResponseSchema, inputRequestLifecycleDataEventSchema, inputRequestOutputSchema, inputRequestRestSchema, inputResponseRestSchema, inputResponseValuesSchema, } from "./input-request-protocol.js";
|
|
218
218
|
export { executeDurableHumanInputFlow, HumanInputFieldSchema, HumanInputOptionSchema, HumanInputPendingRequestSchema, HumanInputRequestSchema, HumanInputResultSchema, HumanInputResumeError, InvalidHumanInputResultError, waitForDurableHumanInputResolution, waitForHumanInput, } from "./human-input.js";
|
|
219
219
|
export { createChatHandler, } from "./chat-handler.js";
|
|
220
220
|
export { AgentRuntime, getProviderToolProfile, RunAlreadyExistsError, RunCancelledError, RunNotActiveError, RunResumeSessionManager, sanitizeProviderToolSchema, selectProviderCompatibleToolNames, selectProviderCompatibleTools, WaitConflictError, WaitNotPendingError, } from "./runtime/index.js";
|
|
221
|
-
export { createHostedServiceAuth, getHostedServiceTokenFromRequest, HostedServiceAuthError, isHostedServiceAuthError, } from "./hosted-service-auth.js";
|
|
221
|
+
export { createHostedServiceAuth, createHostedServiceAuth as createAgentServiceAuth, getHostedServiceTokenFromRequest, getHostedServiceTokenFromRequest as getAgentServiceTokenFromRequest, HostedServiceAuthError, HostedServiceAuthError as AgentServiceAuthError, isHostedServiceAuthError, isHostedServiceAuthError as isAgentServiceAuthError, } from "./hosted-service-auth.js";
|
|
@@ -10,8 +10,6 @@ import {
|
|
|
10
10
|
readHydrationData,
|
|
11
11
|
resolveClientModuleStrategy,
|
|
12
12
|
} from "./client-module-strategy.ts";
|
|
13
|
-
import type { Root } from "https://esm.sh/react-dom@18.3.1/client";
|
|
14
|
-
|
|
15
13
|
type Manifest = {
|
|
16
14
|
version: number;
|
|
17
15
|
hash?: string;
|
|
@@ -27,6 +25,11 @@ interface ClientModule {
|
|
|
27
25
|
[exportName: string]: React.ComponentType<unknown> | unknown;
|
|
28
26
|
}
|
|
29
27
|
|
|
28
|
+
interface ReactRoot {
|
|
29
|
+
render(children: React.ReactNode): void;
|
|
30
|
+
unmount(): void;
|
|
31
|
+
}
|
|
32
|
+
|
|
30
33
|
interface VeryfrontHydrate {
|
|
31
34
|
run: () => Promise<void>;
|
|
32
35
|
}
|
|
@@ -177,7 +180,7 @@ export async function hydrateAllClientBoundaries(doc: Document = document): Prom
|
|
|
177
180
|
if (typeof Cmp !== "function") continue;
|
|
178
181
|
|
|
179
182
|
try {
|
|
180
|
-
const root:
|
|
183
|
+
const root: ReactRoot = createRoot(el);
|
|
181
184
|
root.render(React.createElement(Cmp as React.FC, {}));
|
|
182
185
|
el.dataset.hydrated = "true";
|
|
183
186
|
} catch (e) {
|
|
@@ -20,5 +20,5 @@ import "../../_dnt.polyfills.js";
|
|
|
20
20
|
export { type CommandJob, type CommandJobHeartbeatStatus, type CommandJobOutput, type CommandJobStatus, type ExecOptions, type ExecResult, type ExecStreamEvent, Sandbox, type SandboxAttachment, type SandboxListOptions, type SandboxListResult, type SandboxOptions, type SandboxSession, } from "./sandbox.js";
|
|
21
21
|
export { LazySandbox, type LazySandboxOptions, resolveDefaultSandboxRuntimeEndpoint, } from "./lazy-sandbox.js";
|
|
22
22
|
export { type BashToolSandboxLike, type CreateSandboxBashTool, createSandboxShellTools, normalizeBashToolSet, renameSandboxFileTools, type SandboxShellToolDefinition, type SandboxShellToolSet, } from "./shell-tools.js";
|
|
23
|
-
export { createHostedSandboxClient, createHostedSandboxTools, createProjectScopedExecOptions, type HostedSandboxClient, type HostedSandboxClientOptions, type HostedSandboxJobClient, type HostedSandboxToolsOptions, type HostedSandboxToolsResult, unwrapSandboxWorkingDirectoryCommand, } from "./hosted-tools.js";
|
|
23
|
+
export { createHostedSandboxClient, createHostedSandboxClient as createAgentServiceSandboxClient, createHostedSandboxTools, createHostedSandboxTools as createAgentServiceSandboxTools, createProjectScopedExecOptions, type HostedSandboxClient, type HostedSandboxClient as AgentServiceSandboxClient, type HostedSandboxClientOptions, type HostedSandboxClientOptions as AgentServiceSandboxClientOptions, type HostedSandboxJobClient, type HostedSandboxJobClient as AgentServiceSandboxJobClient, type HostedSandboxToolsOptions, type HostedSandboxToolsOptions as AgentServiceSandboxToolsOptions, type HostedSandboxToolsResult, type HostedSandboxToolsResult as AgentServiceSandboxToolsResult, unwrapSandboxWorkingDirectoryCommand, } from "./hosted-tools.js";
|
|
24
24
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/sandbox/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,OAAO,yBAAyB,CAAC;AAGjC,OAAO,EACL,KAAK,UAAU,EACf,KAAK,yBAAyB,EAC9B,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,OAAO,EACP,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,cAAc,EACnB,KAAK,cAAc,GACpB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,WAAW,EACX,KAAK,kBAAkB,EACvB,oCAAoC,GACrC,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,KAAK,mBAAmB,EACxB,KAAK,qBAAqB,EAC1B,uBAAuB,EACvB,oBAAoB,EACpB,sBAAsB,EACtB,KAAK,0BAA0B,EAC/B,KAAK,mBAAmB,GACzB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,8BAA8B,EAC9B,KAAK,mBAAmB,EACxB,KAAK,0BAA0B,EAC/B,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,EAC9B,KAAK,wBAAwB,EAC7B,oCAAoC,GACrC,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/sandbox/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AACH,OAAO,yBAAyB,CAAC;AAGjC,OAAO,EACL,KAAK,UAAU,EACf,KAAK,yBAAyB,EAC9B,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,OAAO,EACP,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,cAAc,EACnB,KAAK,cAAc,GACpB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,WAAW,EACX,KAAK,kBAAkB,EACvB,oCAAoC,GACrC,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,KAAK,mBAAmB,EACxB,KAAK,qBAAqB,EAC1B,uBAAuB,EACvB,oBAAoB,EACpB,sBAAsB,EACtB,KAAK,0BAA0B,EAC/B,KAAK,mBAAmB,GACzB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,yBAAyB,EACzB,yBAAyB,IAAI,+BAA+B,EAC5D,wBAAwB,EACxB,wBAAwB,IAAI,8BAA8B,EAC1D,8BAA8B,EAC9B,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,IAAI,yBAAyB,EACrD,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,IAAI,gCAAgC,EACnE,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,IAAI,4BAA4B,EAC3D,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,IAAI,+BAA+B,EACjE,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,IAAI,8BAA8B,EAC/D,oCAAoC,GACrC,MAAM,mBAAmB,CAAC"}
|
package/esm/src/sandbox/index.js
CHANGED
|
@@ -20,4 +20,4 @@ import "../../_dnt.polyfills.js";
|
|
|
20
20
|
export { Sandbox, } from "./sandbox.js";
|
|
21
21
|
export { LazySandbox, resolveDefaultSandboxRuntimeEndpoint, } from "./lazy-sandbox.js";
|
|
22
22
|
export { createSandboxShellTools, normalizeBashToolSet, renameSandboxFileTools, } from "./shell-tools.js";
|
|
23
|
-
export { createHostedSandboxClient, createHostedSandboxTools, createProjectScopedExecOptions, unwrapSandboxWorkingDirectoryCommand, } from "./hosted-tools.js";
|
|
23
|
+
export { createHostedSandboxClient, createHostedSandboxClient as createAgentServiceSandboxClient, createHostedSandboxTools, createHostedSandboxTools as createAgentServiceSandboxTools, createProjectScopedExecOptions, unwrapSandboxWorkingDirectoryCommand, } from "./hosted-tools.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.496";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
package/src/src/agent/index.ts
CHANGED
|
@@ -125,6 +125,7 @@ export {
|
|
|
125
125
|
type HostedChatRuntimeAllowedToolNames,
|
|
126
126
|
type HostedChatRuntimeToolAssemblyContext,
|
|
127
127
|
type HostedChatRuntimeToolAssemblyResult,
|
|
128
|
+
type HostedChatRuntimeToolAssemblyResult as AgentServiceChatRuntimeToolAssemblyResult,
|
|
128
129
|
prepareHostedChatRuntimeToolAssembly,
|
|
129
130
|
type PrepareHostedChatRuntimeToolAssemblyInput,
|
|
130
131
|
} from "./hosted-chat-runtime-tool-assembly.js";
|
|
@@ -260,24 +261,46 @@ export {
|
|
|
260
261
|
} from "./agent-service-server.js";
|
|
261
262
|
export {
|
|
262
263
|
createDefaultHostedChatRuntime,
|
|
264
|
+
createDefaultHostedChatRuntime as createDefaultAgentServiceChatRuntime,
|
|
263
265
|
type CreateDefaultHostedChatRuntimeContextInput,
|
|
266
|
+
type CreateDefaultHostedChatRuntimeContextInput
|
|
267
|
+
as CreateDefaultAgentServiceChatRuntimeContextInput,
|
|
264
268
|
type CreateDefaultHostedChatRuntimeOptions,
|
|
269
|
+
type CreateDefaultHostedChatRuntimeOptions as CreateDefaultAgentServiceChatRuntimeOptions,
|
|
265
270
|
type DefaultHostedChatRuntimeConfig,
|
|
271
|
+
type DefaultHostedChatRuntimeConfig as DefaultAgentServiceChatRuntimeConfig,
|
|
266
272
|
type DefaultHostedChatRuntimeCreationOptions,
|
|
273
|
+
type DefaultHostedChatRuntimeCreationOptions as DefaultAgentServiceChatRuntimeCreationOptions,
|
|
267
274
|
type DefaultHostedChatRuntimeLogger,
|
|
275
|
+
type DefaultHostedChatRuntimeLogger as DefaultAgentServiceChatRuntimeLogger,
|
|
268
276
|
type DefaultHostedChatRuntimeProjectSwitchInput,
|
|
277
|
+
type DefaultHostedChatRuntimeProjectSwitchInput
|
|
278
|
+
as DefaultAgentServiceChatRuntimeProjectSwitchInput,
|
|
269
279
|
type DefaultHostedChatRuntimeSteeringMutationInput,
|
|
280
|
+
type DefaultHostedChatRuntimeSteeringMutationInput
|
|
281
|
+
as DefaultAgentServiceChatRuntimeSteeringMutationInput,
|
|
270
282
|
type DefaultHostedChatRuntimeSystemRefreshInput,
|
|
283
|
+
type DefaultHostedChatRuntimeSystemRefreshInput
|
|
284
|
+
as DefaultAgentServiceChatRuntimeSystemRefreshInput,
|
|
271
285
|
type DefaultHostedChatRuntimeTaskContext,
|
|
286
|
+
type DefaultHostedChatRuntimeTaskContext as DefaultAgentServiceChatRuntimeTaskContext,
|
|
272
287
|
} from "./default-hosted-chat-runtime.js";
|
|
273
288
|
export {
|
|
274
289
|
createDefaultHostedProjectSteeringRefresh,
|
|
290
|
+
createDefaultHostedProjectSteeringRefresh as createDefaultAgentServiceProjectSteeringRefresh,
|
|
275
291
|
type CreateDefaultHostedProjectSteeringRefreshOptions,
|
|
292
|
+
type CreateDefaultHostedProjectSteeringRefreshOptions
|
|
293
|
+
as CreateDefaultAgentServiceProjectSteeringRefreshOptions,
|
|
276
294
|
type DefaultHostedProjectSteeringFetchers,
|
|
295
|
+
type DefaultHostedProjectSteeringFetchers as DefaultAgentServiceProjectSteeringFetchers,
|
|
277
296
|
type DefaultHostedProjectSteeringRefreshLogger,
|
|
297
|
+
type DefaultHostedProjectSteeringRefreshLogger as DefaultAgentServiceProjectSteeringRefreshLogger,
|
|
278
298
|
type DefaultHostedProjectSteeringRefreshLookup,
|
|
299
|
+
type DefaultHostedProjectSteeringRefreshLookup as DefaultAgentServiceProjectSteeringRefreshLookup,
|
|
279
300
|
fetchDefaultHostedProjectSteering,
|
|
301
|
+
fetchDefaultHostedProjectSteering as fetchDefaultAgentServiceProjectSteering,
|
|
280
302
|
type FetchDefaultHostedProjectSteeringInput,
|
|
303
|
+
type FetchDefaultHostedProjectSteeringInput as FetchDefaultAgentServiceProjectSteeringInput,
|
|
281
304
|
} from "./default-hosted-project-steering-refresh.js";
|
|
282
305
|
|
|
283
306
|
export {
|
|
@@ -435,26 +458,44 @@ export {
|
|
|
435
458
|
|
|
436
459
|
export type {
|
|
437
460
|
HostedChatRuntimeAgent,
|
|
461
|
+
HostedChatRuntimeAgent as AgentServiceChatRuntimeAgent,
|
|
438
462
|
HostedChatRuntimeCreationOptions,
|
|
463
|
+
HostedChatRuntimeCreationOptions as AgentServiceChatRuntimeCreationOptions,
|
|
439
464
|
HostedChatRuntimeCreationResult,
|
|
465
|
+
HostedChatRuntimeCreationResult as AgentServiceChatRuntimeCreationResult,
|
|
440
466
|
HostedChatRuntimeFinishPart,
|
|
467
|
+
HostedChatRuntimeFinishPart as AgentServiceChatRuntimeFinishPart,
|
|
441
468
|
HostedChatRuntimeOnFinishEvent,
|
|
469
|
+
HostedChatRuntimeOnFinishEvent as AgentServiceChatRuntimeOnFinishEvent,
|
|
442
470
|
HostedChatRuntimeProjectSteering,
|
|
471
|
+
HostedChatRuntimeProjectSteering as AgentServiceChatRuntimeProjectSteering,
|
|
443
472
|
HostedChatRuntimeStreamInput,
|
|
473
|
+
HostedChatRuntimeStreamInput as AgentServiceChatRuntimeStreamInput,
|
|
444
474
|
HostedChatRuntimeStreamResult,
|
|
475
|
+
HostedChatRuntimeStreamResult as AgentServiceChatRuntimeStreamResult,
|
|
445
476
|
HostedChatRuntimeToUiMessageStreamOptions,
|
|
477
|
+
HostedChatRuntimeToUiMessageStreamOptions as AgentServiceChatRuntimeToUiMessageStreamOptions,
|
|
446
478
|
} from "./hosted-chat-runtime-contract.js";
|
|
447
479
|
|
|
448
480
|
export {
|
|
449
481
|
createHostedAgentServiceRouteSet,
|
|
482
|
+
createHostedAgentServiceRouteSet as createAgentServiceRouteSet,
|
|
450
483
|
type HostedAgentServiceActiveSpanAttributes,
|
|
484
|
+
type HostedAgentServiceActiveSpanAttributes as AgentServiceActiveSpanAttributes,
|
|
451
485
|
type HostedAgentServiceDetachedCleanupInput,
|
|
486
|
+
type HostedAgentServiceDetachedCleanupInput as AgentServiceDetachedCleanupInput,
|
|
452
487
|
type HostedAgentServiceDetachedExecutionInput,
|
|
488
|
+
type HostedAgentServiceDetachedExecutionInput as AgentServiceDetachedExecutionInput,
|
|
453
489
|
type HostedAgentServiceRouteSet,
|
|
490
|
+
type HostedAgentServiceRouteSet as AgentServiceRouteSet,
|
|
454
491
|
type HostedAgentServiceRouteSetOptions,
|
|
492
|
+
type HostedAgentServiceRouteSetOptions as AgentServiceRouteSetOptions,
|
|
455
493
|
type HostedAgentServiceRoutesLogger,
|
|
494
|
+
type HostedAgentServiceRoutesLogger as AgentServiceRoutesLogger,
|
|
456
495
|
type HostedAgentServiceRoutesTrace,
|
|
496
|
+
type HostedAgentServiceRoutesTrace as AgentServiceRoutesTrace,
|
|
457
497
|
type HostedAgentServiceStreamExecutionInput,
|
|
498
|
+
type HostedAgentServiceStreamExecutionInput as AgentServiceStreamExecutionInput,
|
|
458
499
|
} from "./hosted-agent-service-routes.js";
|
|
459
500
|
export {
|
|
460
501
|
createHostedRuntimeStateResolver,
|
|
@@ -478,23 +519,40 @@ export {
|
|
|
478
519
|
} from "./hosted-durable-chat-run-start.js";
|
|
479
520
|
export {
|
|
480
521
|
buildParsedHostedChatRequest,
|
|
522
|
+
buildParsedHostedChatRequest as buildParsedAgentServiceChatRequest,
|
|
481
523
|
type HostedChatProjectAccessError,
|
|
524
|
+
type HostedChatProjectAccessError as AgentServiceChatProjectAccessError,
|
|
482
525
|
type HostedChatProjectAccessResult,
|
|
526
|
+
type HostedChatProjectAccessResult as AgentServiceChatProjectAccessResult,
|
|
483
527
|
type HostedChatRequestPrincipal,
|
|
528
|
+
type HostedChatRequestPrincipal as AgentServiceChatRequestPrincipal,
|
|
484
529
|
type ParsedHostedChatRequest,
|
|
530
|
+
type ParsedHostedChatRequest as ParsedAgentServiceChatRequest,
|
|
485
531
|
parseHostedChatRequestFromRequest,
|
|
532
|
+
parseHostedChatRequestFromRequest as parseAgentServiceChatRequestFromRequest,
|
|
486
533
|
type ParseHostedChatRequestOptions,
|
|
534
|
+
type ParseHostedChatRequestOptions as ParseAgentServiceChatRequestOptions,
|
|
487
535
|
parseRuntimeAgentRunInvocationHostedChatRequestFromRequest,
|
|
536
|
+
parseRuntimeAgentRunInvocationHostedChatRequestFromRequest
|
|
537
|
+
as parseRuntimeAgentRunInvocationAgentServiceChatRequestFromRequest,
|
|
488
538
|
} from "./hosted-chat-request-parser.js";
|
|
489
539
|
export {
|
|
490
540
|
buildParsedHostedAgUiRequest,
|
|
541
|
+
buildParsedHostedAgUiRequest as buildParsedAgentServiceAgUiRequest,
|
|
491
542
|
type BuildParsedHostedAgUiRequestOptions,
|
|
543
|
+
type BuildParsedHostedAgUiRequestOptions as BuildParsedAgentServiceAgUiRequestOptions,
|
|
492
544
|
createHostedAgUiValidationErrorResponse,
|
|
545
|
+
createHostedAgUiValidationErrorResponse as createAgentServiceAgUiValidationErrorResponse,
|
|
493
546
|
type DerivedHostedAgUiChatContext,
|
|
547
|
+
type DerivedHostedAgUiChatContext as DerivedAgentServiceAgUiChatContext,
|
|
494
548
|
deriveHostedAgUiChatContext,
|
|
549
|
+
deriveHostedAgUiChatContext as deriveAgentServiceAgUiChatContext,
|
|
495
550
|
type HostedAgUiChatForwardedConfig,
|
|
551
|
+
type HostedAgUiChatForwardedConfig as AgentServiceAgUiChatForwardedConfig,
|
|
496
552
|
hostedAgUiChatForwardedConfigSchema,
|
|
553
|
+
hostedAgUiChatForwardedConfigSchema as agentServiceAgUiChatForwardedConfigSchema,
|
|
497
554
|
type ParsedHostedAgUiRequest,
|
|
555
|
+
type ParsedHostedAgUiRequest as ParsedAgentServiceAgUiRequest,
|
|
498
556
|
} from "./hosted-ag-ui-chat-request.js";
|
|
499
557
|
export {
|
|
500
558
|
buildHostedChatRequestForwardedPropsFromRuntimeAgentInvocation,
|
|
@@ -714,11 +772,16 @@ export {
|
|
|
714
772
|
export {
|
|
715
773
|
type ConversationRootRunLifecycle,
|
|
716
774
|
type HostedConversationRootRunContext,
|
|
775
|
+
type HostedConversationRootRunContext as AgentServiceConversationRootRunContext,
|
|
717
776
|
type HostedConversationRootRunState,
|
|
777
|
+
type HostedConversationRootRunState as AgentServiceConversationRootRunState,
|
|
718
778
|
prepareConversationRootRunLifecycle,
|
|
719
779
|
type PrepareConversationRootRunLifecycleOptions,
|
|
720
780
|
prepareHostedConversationRootRunContext,
|
|
781
|
+
prepareHostedConversationRootRunContext as prepareAgentServiceConversationRootRunContext,
|
|
721
782
|
type PrepareHostedConversationRootRunContextInput,
|
|
783
|
+
type PrepareHostedConversationRootRunContextInput
|
|
784
|
+
as PrepareAgentServiceConversationRootRunContextInput,
|
|
722
785
|
} from "./conversation-root-run-lifecycle.js";
|
|
723
786
|
export {
|
|
724
787
|
bootstrapConversationAgentRun,
|
|
@@ -860,11 +923,17 @@ export {
|
|
|
860
923
|
type HostedChatRuntimePreparationRootRunContext,
|
|
861
924
|
type HostedChatRuntimePreparationSteering,
|
|
862
925
|
type NormalizedHostedChatRequest,
|
|
926
|
+
type NormalizedHostedChatRequest as NormalizedAgentServiceChatRequest,
|
|
863
927
|
normalizeParsedHostedChatRequest,
|
|
928
|
+
normalizeParsedHostedChatRequest as normalizeParsedAgentServiceChatRequest,
|
|
864
929
|
prepareHostedChatExecution,
|
|
930
|
+
prepareHostedChatExecution as prepareAgentServiceChatExecution,
|
|
865
931
|
prepareHostedChatRuntimeCreationOptions,
|
|
932
|
+
prepareHostedChatRuntimeCreationOptions as prepareAgentServiceChatRuntimeCreationOptions,
|
|
866
933
|
prepareHostedChatRuntimeMessages,
|
|
934
|
+
prepareHostedChatRuntimeMessages as prepareAgentServiceChatRuntimeMessages,
|
|
867
935
|
type PrepareHostedChatRuntimeMessagesOptions,
|
|
936
|
+
type PrepareHostedChatRuntimeMessagesOptions as PrepareAgentServiceChatRuntimeMessagesOptions,
|
|
868
937
|
} from "./hosted-chat-preparation.js";
|
|
869
938
|
export {
|
|
870
939
|
getRuntimeUploadUrl,
|
|
@@ -918,18 +987,29 @@ export {
|
|
|
918
987
|
} from "./hosted-child-invoke-tool.js";
|
|
919
988
|
export {
|
|
920
989
|
createDefaultHostedInvokeAgentTool,
|
|
990
|
+
createDefaultHostedInvokeAgentTool as createDefaultAgentServiceInvokeAgentTool,
|
|
921
991
|
type DefaultHostedInvokeAgentConfig,
|
|
992
|
+
type DefaultHostedInvokeAgentConfig as DefaultAgentServiceInvokeAgentConfig,
|
|
922
993
|
type DefaultHostedInvokeAgentContext,
|
|
994
|
+
type DefaultHostedInvokeAgentContext as DefaultAgentServiceInvokeAgentContext,
|
|
923
995
|
type DefaultHostedInvokeAgentInput,
|
|
996
|
+
type DefaultHostedInvokeAgentInput as DefaultAgentServiceInvokeAgentInput,
|
|
924
997
|
defaultHostedInvokeAgentInputSchema,
|
|
925
998
|
type DefaultHostedInvokeAgentLogger,
|
|
999
|
+
type DefaultHostedInvokeAgentLogger as DefaultAgentServiceInvokeAgentLogger,
|
|
926
1000
|
type DefaultHostedInvokeAgentProjectRefresh,
|
|
1001
|
+
type DefaultHostedInvokeAgentProjectRefresh as DefaultAgentServiceInvokeAgentProjectRefresh,
|
|
927
1002
|
defaultHostedInvokeAgentSelectionSchema,
|
|
928
1003
|
type DefaultHostedInvokeAgentToolOptions,
|
|
1004
|
+
type DefaultHostedInvokeAgentToolOptions as DefaultAgentServiceInvokeAgentToolOptions,
|
|
929
1005
|
type DefaultHostedInvokeAgentToolResult,
|
|
1006
|
+
type DefaultHostedInvokeAgentToolResult as DefaultAgentServiceInvokeAgentToolResult,
|
|
930
1007
|
type DefaultHostedInvokeAgentTrace,
|
|
1008
|
+
type DefaultHostedInvokeAgentTrace as DefaultAgentServiceInvokeAgentTrace,
|
|
931
1009
|
type DefaultHostedInvokeAgentTraceAttributes,
|
|
1010
|
+
type DefaultHostedInvokeAgentTraceAttributes as DefaultAgentServiceInvokeAgentTraceAttributes,
|
|
932
1011
|
executeDefaultHostedInvokeAgentTool,
|
|
1012
|
+
executeDefaultHostedInvokeAgentTool as executeDefaultAgentServiceInvokeAgentTool,
|
|
933
1013
|
} from "./default-hosted-invoke-agent-tool.js";
|
|
934
1014
|
export {
|
|
935
1015
|
buildDefaultHostedChildForkToolSet,
|
|
@@ -1051,15 +1131,21 @@ export {
|
|
|
1051
1131
|
} from "./runtime-project-files-client.js";
|
|
1052
1132
|
export {
|
|
1053
1133
|
createHostedAgentProjectSteering,
|
|
1134
|
+
createHostedAgentProjectSteering as createAgentServiceProjectSteering,
|
|
1054
1135
|
type HostedAgentProjectSteering,
|
|
1136
|
+
type HostedAgentProjectSteering as AgentServiceProjectSteering,
|
|
1055
1137
|
type HostedAgentProjectSteeringLogger,
|
|
1138
|
+
type HostedAgentProjectSteeringLogger as AgentServiceProjectSteeringLogger,
|
|
1056
1139
|
type HostedAgentProjectSteeringOptions,
|
|
1140
|
+
type HostedAgentProjectSteeringOptions as AgentServiceProjectSteeringOptions,
|
|
1057
1141
|
type HostedAgentProjectSteeringOptionsData,
|
|
1142
|
+
type HostedAgentProjectSteeringOptionsData as AgentServiceProjectSteeringOptionsData,
|
|
1058
1143
|
hostedAgentProjectSteeringOptionsSchema,
|
|
1059
1144
|
} from "./hosted-agent-project-steering.js";
|
|
1060
1145
|
export {
|
|
1061
1146
|
createHostedProjectSteeringAdapter,
|
|
1062
1147
|
type HostedProjectSkillIdsContext,
|
|
1148
|
+
type HostedProjectSkillIdsContext as AgentServiceProjectSkillIdsContext,
|
|
1063
1149
|
type HostedProjectSteeringAdapter,
|
|
1064
1150
|
type HostedProjectSteeringAdapterOptions,
|
|
1065
1151
|
type HostedProjectSteeringLogger,
|
|
@@ -1201,21 +1287,39 @@ export {
|
|
|
1201
1287
|
} from "./hosted-chat-execution-runtime.js";
|
|
1202
1288
|
export {
|
|
1203
1289
|
type PreparedHostedChatExecution,
|
|
1290
|
+
type PreparedHostedChatExecution as PreparedAgentServiceChatExecution,
|
|
1204
1291
|
type PreparedHostedChatExecutionDetachedInput,
|
|
1292
|
+
type PreparedHostedChatExecutionDetachedInput as PreparedAgentServiceChatExecutionDetachedInput,
|
|
1205
1293
|
type PreparedHostedChatExecutionRuntimeOptions,
|
|
1294
|
+
type PreparedHostedChatExecutionRuntimeOptions as PreparedAgentServiceChatExecutionRuntimeOptions,
|
|
1206
1295
|
type PreparedHostedChatExecutionStreamInput,
|
|
1296
|
+
type PreparedHostedChatExecutionStreamInput as PreparedAgentServiceChatExecutionStreamInput,
|
|
1207
1297
|
runPreparedHostedChatExecutionDetached,
|
|
1298
|
+
runPreparedHostedChatExecutionDetached as runPreparedAgentServiceChatExecutionDetached,
|
|
1208
1299
|
streamPreparedHostedChatExecutionToAgUiResponse,
|
|
1300
|
+
streamPreparedHostedChatExecutionToAgUiResponse
|
|
1301
|
+
as streamPreparedAgentServiceChatExecutionToAgUiResponse,
|
|
1209
1302
|
} from "./prepared-hosted-chat-execution.js";
|
|
1210
1303
|
export {
|
|
1211
1304
|
createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions,
|
|
1305
|
+
createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions
|
|
1306
|
+
as createVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptions,
|
|
1212
1307
|
type CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput,
|
|
1308
|
+
type CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput
|
|
1309
|
+
as CreateVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptionsInput,
|
|
1213
1310
|
} from "./veryfront-cloud-prepared-hosted-chat-execution-runtime.js";
|
|
1214
1311
|
export {
|
|
1215
1312
|
createVeryfrontCloudHostedChatExecutionRootRunOptions,
|
|
1313
|
+
createVeryfrontCloudHostedChatExecutionRootRunOptions
|
|
1314
|
+
as createVeryfrontCloudAgentServiceChatExecutionRootRunOptions,
|
|
1216
1315
|
prepareVeryfrontCloudHostedChatExecution,
|
|
1316
|
+
prepareVeryfrontCloudHostedChatExecution as prepareVeryfrontCloudAgentServiceChatExecution,
|
|
1217
1317
|
type PrepareVeryfrontCloudHostedChatExecutionInput,
|
|
1318
|
+
type PrepareVeryfrontCloudHostedChatExecutionInput
|
|
1319
|
+
as PrepareVeryfrontCloudAgentServiceChatExecutionInput,
|
|
1218
1320
|
type VeryfrontCloudHostedChatExecutionPreparationLogger,
|
|
1321
|
+
type VeryfrontCloudHostedChatExecutionPreparationLogger
|
|
1322
|
+
as VeryfrontCloudAgentServiceChatExecutionPreparationLogger,
|
|
1219
1323
|
} from "./veryfront-cloud-hosted-chat-execution-preparation.js";
|
|
1220
1324
|
export {
|
|
1221
1325
|
finalizeHostedDetached,
|
|
@@ -1317,15 +1421,25 @@ export {
|
|
|
1317
1421
|
} from "./hosted-child-lifecycle.js";
|
|
1318
1422
|
export {
|
|
1319
1423
|
appendHostedChildMirrorChunk,
|
|
1424
|
+
appendHostedChildMirrorChunk as appendAgentServiceChildMirrorChunk,
|
|
1320
1425
|
closeHostedChildReasoningSegment,
|
|
1426
|
+
closeHostedChildReasoningSegment as closeAgentServiceChildReasoningSegment,
|
|
1321
1427
|
closeHostedChildTextSegment,
|
|
1428
|
+
closeHostedChildTextSegment as closeAgentServiceChildTextSegment,
|
|
1322
1429
|
createHostedChildMirrorContext,
|
|
1430
|
+
createHostedChildMirrorContext as createAgentServiceChildMirrorContext,
|
|
1323
1431
|
type HostedChildChunkMirror,
|
|
1432
|
+
type HostedChildChunkMirror as AgentServiceChildChunkMirror,
|
|
1324
1433
|
type HostedChildMirrorContext,
|
|
1434
|
+
type HostedChildMirrorContext as AgentServiceChildMirrorContext,
|
|
1325
1435
|
type HostedChildMirrorPart,
|
|
1436
|
+
type HostedChildMirrorPart as AgentServiceChildMirrorPart,
|
|
1326
1437
|
type HostedChildMirrorState,
|
|
1438
|
+
type HostedChildMirrorState as AgentServiceChildMirrorState,
|
|
1327
1439
|
isAlreadyMirroredHostedChunk,
|
|
1440
|
+
isAlreadyMirroredHostedChunk as isAlreadyMirroredAgentServiceChunk,
|
|
1328
1441
|
toMirroredHostedStreamPart,
|
|
1442
|
+
toMirroredHostedStreamPart as toMirroredAgentServiceStreamPart,
|
|
1329
1443
|
} from "./hosted-child-mirror.js";
|
|
1330
1444
|
export {
|
|
1331
1445
|
convertCompactedProviderMessagesToChildForkRuntimeMessages,
|
|
@@ -1470,7 +1584,9 @@ export {
|
|
|
1470
1584
|
} from "./ag-ui-handler.js";
|
|
1471
1585
|
export {
|
|
1472
1586
|
createHostedFormInputTool,
|
|
1587
|
+
createHostedFormInputTool as createAgentServiceFormInputTool,
|
|
1473
1588
|
type HostedFormInputToolContext,
|
|
1589
|
+
type HostedFormInputToolContext as AgentServiceFormInputToolContext,
|
|
1474
1590
|
} from "./hosted-form-input-tool.js";
|
|
1475
1591
|
export {
|
|
1476
1592
|
buildInputRequestLifecycleDataEvent,
|
|
@@ -1543,19 +1659,35 @@ export {
|
|
|
1543
1659
|
|
|
1544
1660
|
export {
|
|
1545
1661
|
createHostedServiceAuth,
|
|
1662
|
+
createHostedServiceAuth as createAgentServiceAuth,
|
|
1546
1663
|
getHostedServiceTokenFromRequest,
|
|
1664
|
+
getHostedServiceTokenFromRequest as getAgentServiceTokenFromRequest,
|
|
1547
1665
|
type HostedServiceAuth,
|
|
1666
|
+
type HostedServiceAuth as AgentServiceAuth,
|
|
1548
1667
|
type HostedServiceAuthConfig,
|
|
1668
|
+
type HostedServiceAuthConfig as AgentServiceAuthConfig,
|
|
1549
1669
|
type HostedServiceAuthenticatedRequest,
|
|
1670
|
+
type HostedServiceAuthenticatedRequest as AgentServiceAuthenticatedRequest,
|
|
1550
1671
|
HostedServiceAuthError,
|
|
1672
|
+
HostedServiceAuthError as AgentServiceAuthError,
|
|
1551
1673
|
type HostedServiceAuthErrorCode,
|
|
1674
|
+
type HostedServiceAuthErrorCode as AgentServiceAuthErrorCode,
|
|
1552
1675
|
type HostedServiceAuthFetch,
|
|
1676
|
+
type HostedServiceAuthFetch as AgentServiceAuthFetch,
|
|
1553
1677
|
type HostedServiceAuthLogger,
|
|
1678
|
+
type HostedServiceAuthLogger as AgentServiceAuthLogger,
|
|
1554
1679
|
type HostedServiceAuthOptions,
|
|
1680
|
+
type HostedServiceAuthOptions as AgentServiceAuthOptions,
|
|
1555
1681
|
type HostedServiceAuthTrace,
|
|
1682
|
+
type HostedServiceAuthTrace as AgentServiceAuthTrace,
|
|
1556
1683
|
type HostedServiceJwtError,
|
|
1684
|
+
type HostedServiceJwtError as AgentServiceJwtError,
|
|
1557
1685
|
type HostedServiceJwtResult,
|
|
1686
|
+
type HostedServiceJwtResult as AgentServiceJwtResult,
|
|
1558
1687
|
type HostedServiceProjectAccessError,
|
|
1688
|
+
type HostedServiceProjectAccessError as AgentServiceProjectAccessError,
|
|
1559
1689
|
type HostedServiceProjectAccessResult,
|
|
1690
|
+
type HostedServiceProjectAccessResult as AgentServiceProjectAccessResult,
|
|
1560
1691
|
isHostedServiceAuthError,
|
|
1692
|
+
isHostedServiceAuthError as isAgentServiceAuthError,
|
|
1561
1693
|
} from "./hosted-service-auth.js";
|
package/src/src/sandbox/index.ts
CHANGED
|
@@ -50,12 +50,19 @@ export {
|
|
|
50
50
|
} from "./shell-tools.js";
|
|
51
51
|
export {
|
|
52
52
|
createHostedSandboxClient,
|
|
53
|
+
createHostedSandboxClient as createAgentServiceSandboxClient,
|
|
53
54
|
createHostedSandboxTools,
|
|
55
|
+
createHostedSandboxTools as createAgentServiceSandboxTools,
|
|
54
56
|
createProjectScopedExecOptions,
|
|
55
57
|
type HostedSandboxClient,
|
|
58
|
+
type HostedSandboxClient as AgentServiceSandboxClient,
|
|
56
59
|
type HostedSandboxClientOptions,
|
|
60
|
+
type HostedSandboxClientOptions as AgentServiceSandboxClientOptions,
|
|
57
61
|
type HostedSandboxJobClient,
|
|
62
|
+
type HostedSandboxJobClient as AgentServiceSandboxJobClient,
|
|
58
63
|
type HostedSandboxToolsOptions,
|
|
64
|
+
type HostedSandboxToolsOptions as AgentServiceSandboxToolsOptions,
|
|
59
65
|
type HostedSandboxToolsResult,
|
|
66
|
+
type HostedSandboxToolsResult as AgentServiceSandboxToolsResult,
|
|
60
67
|
unwrapSandboxWorkingDirectoryCommand,
|
|
61
68
|
} from "./hosted-tools.js";
|