Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
veryfront/agent
AI agents with memory, tools, and multi-agent composition.Import
Examples
Basic agent
Agent with tools
Agent with materialized runtime tools
Agent with skills
Streaming API route
Multi-agent composition
API
agent(config)
Agent helper.
| Property | Type | Description | Source |
|---|---|---|---|
id? | string | Unique identifier (auto-generated if omitted) | source |
name? | string | Human-readable display name for registry and control-plane listings. | source |
description? | string | Optional summary shown in registry and control-plane listings. | source |
model? | ModelString | Optional model string in “provider/model” format. | source |
system | string | (() => string) | (() => Promise<string>) | System prompt: string, function, or async function | source |
tools? | true | Record<string, Tool | boolean> | Tools available to the agent | source |
remoteTools? | RemoteToolSource[] | source | |
allowedRemoteTools? | string[] | Optional remote tool name allowlist. When set, only matching tools from remoteTools are exposed to the model and executable at runtime. | source |
maxSteps? | number | Max tool-call iterations per request | source |
streaming? | boolean | Enable streaming responses | source |
memory? | MemoryConfig | Conversation memory settings | source |
middleware? | AgentMiddleware[] | Execution middleware pipeline | source |
edge? | EdgeConfig | Edge runtime configuration | source |
multimodal? | { vision?: boolean; audio?: boolean } | Enable vision and/or audio | source |
allowedModels? | ModelString[] | Restrict runtime model overrides to these “provider/model” strings. | source |
resolveModelTransport? | ModelTransportResolver | Optional request-aware hook for overriding the resolved model runtime and provider transport options on a per-call basis. | source |
resolveRuntimeState? | RuntimeStateResolver | Optional step-boundary hook for refreshing the runtime system prompt and host-owned context during a long-lived run. | source |
onToolResult? | ToolExecutionResultHandler | Optional hook invoked after the runtime executes a configured local, registry, integration, or remote tool and before the tool result is persisted or streamed back to callers. | source |
skills? | true | string[] | Enable skills for this agent. | source |
suggestions? | Suggestions | source | |
security? | false | Set to false to disable the default security middleware | source |
Agent
agent.generate(input)
Run the agent and return a complete response. Accepts a string or message array as input.
| Property | Type | Description | Source |
|---|---|---|---|
input | string | Message[] | Prompt string or message history | source |
context? | Record<string, unknown> | Additional context passed to the agent | source |
model? | ModelString | Override the agent’s default model for this request. Must be in allowedModels if configured. | source |
maxOutputTokens? | number | Override the maximum model output tokens for this request. | source |
Promise<AgentResponse>
agent.stream(input)
Run the agent and stream the response. Returns a result with .toDataStreamResponse() for API routes.
| Property | Type | Description | Source |
|---|---|---|---|
input? | string | Prompt string | source |
messages? | Message[] | Conversation message history | source |
context? | Record<string, unknown> | Additional context passed to the agent | source |
model? | ModelString | Override the agent’s default model for this request. Must be in allowedModels if configured. | source |
maxOutputTokens? | number | Override the maximum model output tokens for this request. | source |
onToolCall? | (toolCall: ToolCall) => void | Callback fired when a tool is invoked | source |
onChunk? | (chunk: string) => void | Callback fired for each text chunk | source |
onFinish? | (response: AgentResponse) => void | source | |
abortSignal? | AbortSignal | source |
Promise<AgentStreamResult>
agent.respond(request)
Convert an HTTP request into an AG-UI streaming response for route handlers.
Returns: Promise<Response>
agent.getMemory()
Get the agent’s memory instance.
Returns: Memory<Message>
agent.getMemoryStats()
Get memory usage statistics (message count, estimated tokens, type).
Returns: Promise<{ totalMessages: number; estimatedTokens: number; type: string }>
agent.clearMemory()
Clear all stored messages from memory.
Returns: Promise<void>
Exports
Components
| Name | Description | Source |
|---|---|---|
AgUiDetachedStartAcceptedSchema | Schema for AG-UI detached start accepted. | source |
AgUiDetachedStartRequestSchema | Schema for AG-UI detached start request. | source |
AgUiRequestSchema | Schema for AG-UI request. | source |
AgUiResumeSignalSchema | Schema for AG-UI resume signal. | source |
AppendConversationRunEventsResponseSchema | Schema for append conversation run events response. | source |
CompleteConversationRunResponseSchema | Schema for complete conversation run response. | source |
CONVERSATION_HOSTED_ABORTED_TERMINAL_ERROR_CODE | Shared conversation hosted aborted terminal error code value. | source |
CONVERSATION_HOSTED_INCOMPLETE_TOOL_CALLS_TERMINAL_ERROR_CODE | Shared conversation hosted incomplete tool calls terminal error code value. | source |
CONVERSATION_HOSTED_STREAM_ERROR_TERMINAL_ERROR_CODE | Shared conversation hosted stream error terminal error code value. | source |
ConversationMessageRecordSchema | Schema for conversation message record. | source |
ConversationRecordSchema | Schema for conversation record. | source |
ConversationRunEventSchema | Schema for conversation run event. | source |
ConversationRunProjectionSchema | Schema for conversation run projection. | source |
ConversationRunStatusSchema | Schema for conversation run status. | source |
ConversationRunTargetsSchema | Schema for conversation run targets. | source |
DEFAULT_FORK_RESPONSE_PROMISE_TIMEOUT_MS | Default value for fork response promise timeout ms. | source |
DEFAULT_HOSTED_CHILD_AGENT_ID | Default value for hosted child agent ID. | source |
DEFAULT_HOSTED_CHILD_EXCLUDED_TOOL_NAMES | Default value for hosted child excluded tool names. | source |
DEFAULT_HOSTED_CHILD_FORK_STREAM_ACTIVE_TOOL_TIMEOUT_MS | Default value for hosted child fork stream active tool timeout ms. | source |
DEFAULT_HOSTED_CHILD_FORK_STREAM_FINALIZATION_TIMEOUT_MS | Default value for hosted child fork stream finalization timeout ms. | source |
DEFAULT_HOSTED_CHILD_FORK_STREAM_IDLE_TIMEOUT_MS | Default value for hosted child fork stream idle timeout ms. | source |
DEFAULT_HOSTED_CHILD_FORK_STREAM_POST_TOOL_IDLE_TIMEOUT_MS | Default value for hosted child fork stream post tool idle timeout ms. | source |
DEFAULT_HOSTED_CHILD_REQUESTED_TOOL_COMPANIONS | Default value for hosted child requested tool companions. | source |
DEFAULT_HOSTED_CHILD_SANDBOX_REQUIRED_CUE_PATTERN | Default value for hosted child sandbox required cue pattern. | source |
DEFAULT_HOSTED_CHILD_STATUS_POLL_INTERVAL_MS | Default value for hosted child status poll interval ms. | source |
DEFAULT_PROJECT_STEERING_PATHS | Default value for project steering paths. | source |
DEFAULT_RUNTIME_AGENT_CONTEXT_MARKER | Default value for runtime agent context marker. | source |
DELEGATE_ONLY_WHEN_MATERIALLY_HELPFUL | Shared delegate only when materially helpful value. | source |
ExternalAgentWorkerRequestSnapshotSchema | Zod schema for external agent worker request snapshot. | source |
ExternalAgentWorkerRunSchema | Zod schema for external agent worker run. | source |
ExternalAgentWorkerSchema | Zod schema for external agent worker. | source |
ExternalAgentWorkerSessionSchema | Zod schema for external agent worker session. | source |
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_BLOCK_MESSAGE | Shared first turn starter intent root ownership block message value. | source |
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_CONTEXT_KEY | Shared first turn starter intent root ownership context key value. | source |
FIRST_TURN_STARTER_INTENT_ROOT_OWNERSHIP_REMINDER | Shared first turn starter intent root ownership reminder value. | source |
HOSTED_CHILD_FORK_INSTRUCTIONS_BASE | Shared hosted child fork instructions base value. | source |
HOSTED_CHILD_STREAM_TIMEOUT_TOKEN | Shared hosted child stream timeout token value. | source |
InvokeAgentChildRunLifecycleCustomEventSchema | Schema for invoke agent child run lifecycle custom event. | source |
InvokeAgentChildRunLifecycleValueSchema | Schema for invoke agent child run lifecycle value. | source |
InvokeAgentChildRunStateDeltaSchema | Schema for invoke agent child run state delta. | source |
KEEP_ROOT_ASSISTANT_VISIBLE_OWNER | Shared keep root assistant visible owner value. | source |
LOAD_SKILL_CONTINUATION_REMINDER | Shared load skill continuation reminder value. | source |
LOAD_SKILL_CONTINUE_SAME_TURN | Shared load skill continue same turn value. | source |
LOAD_SKILL_CONTINUE_SAME_TURN_NOW | Shared load skill continue same turn now value. | source |
LOAD_SKILL_DELEGATION_THRESHOLD | Shared load skill delegation threshold value. | source |
LOAD_SKILL_OVERRIDE_FORWARDING | Shared load skill override forwarding value. | source |
LOAD_SKILL_ROOT_OWNERSHIP | Shared load skill root ownership value. | source |
LOAD_SKILL_TOOL_INTERSECTION | Shared load skill tool intersection value. | source |
LOAD_SKILL_USE_ALLOWED_TOOLS | Shared load skill use allowed tools value. | source |
MAX_RUNTIME_SKILL_PROMPT_ENTRIES | Maximum value for runtime skill prompt entries. | source |
NO_DELEGATION_NARRATION_UNLESS_ASKED | Shared no delegation narration unless asked value. | source |
PROJECT_STEERING_FILE_MUTATION_TOOL_NAMES | Shared project steering file mutation tool names value. | source |
ROOT_OWNED_CHILD_RESULT_INSTRUCTION | Shared root owned child result instruction value. | source |
RUNTIME_LOAD_SKILL_CONTINUATION_NOTE | Shared runtime load skill continuation note value. | source |
RUNTIME_LOAD_SKILL_DESCRIPTION | Shared runtime load skill description value. | source |
RuntimeAgentContextItemSchema | Schema for runtime agent context item. | source |
RuntimeAgentIdSchema | Schema for runtime agent ID. | source |
RuntimeAgentProjectContextSchema | Schema for runtime agent project context. | source |
RuntimeAgentRunContextSchema | Schema for runtime agent run context. | source |
RuntimeAgentRunIdSchema | Schema for runtime agent run ID. | source |
RuntimeAgentRunInvocationSchema | Schema for runtime agent run invocation. | source |
RuntimeAgentServiceIdSchema | Schema for runtime agent service ID. | source |
RuntimeAgentSourceContextSchema | Schema for runtime agent source context. | source |
RuntimeAgentTargetKindSchema | Schema for runtime agent target kind. | source |
RuntimeAgentToolCallIdSchema | Schema for runtime agent tool call ID. | source |
RuntimeAgentToolNameSchema | Schema for runtime agent tool name. | source |
RuntimeAgentToolSchema | Schema for runtime agent tool. | source |
RuntimeAgentValidatedClaimsSchema | Schema for runtime agent validated claims. | source |
RuntimeSkillFrontmatterSchema | Schema for runtime skill frontmatter. | source |
SLASH_COMMAND_ARTIFACT_REMINDER | Shared slash command artifact reminder value. | source |
SYNTHESIZE_DELEGATED_FINDINGS_IN_ROOT_VOICE | Shared synthesize delegated findings in root voice value. | source |
Functions
| Name | Description | Source |
|---|---|---|
addFirstTurnStarterIntentRootOwnershipReminder | Add first turn starter intent root ownership reminder helper. | source |
addLoadSkillContinuationReminder | Add load skill continuation reminder helper. | source |
addSlashCommandArtifactReminder | Add slash command artifact reminder helper. | source |
agent | Agent helper. | source |
agentAsTool | Agent as tool helper. | source |
appendConversationRunEvents | Append conversation run events. | source |
appendHostedChildMirrorChunk | Append hosted child mirror chunk. | source |
appendMissingChildRunToolCalls | Append missing child run tool calls. | source |
appendMissingChildRunToolResults | Append missing child run tool results. | source |
applyAgentProjectContextChange | Apply agent project context change helper. | source |
applyDefaultResearchArtifactPath | Apply default research artifact path helper. | source |
applyPartToStreamedStepState | State for apply part to streamed step. | source |
bootstrapAgentService | Bootstrap agent service helper. | source |
bootstrapConversationAgentRun | Bootstrap conversation agent run helper. | source |
bootstrapHostedChildRun | Bootstrap hosted child run helper. | source |
buildAgentRunTraceAttributes | Builds agent run trace attributes. | source |
buildAgUiBrowserFinalizeResponse | Response payload for build AG-UI browser finalize. | source |
buildAgUiSseTraceSignature | Build a compact ordered event-type signature for regression checks. | source |
buildChatStreamChunkMessageMetadata | Builds chat stream chunk message metadata. | source |
buildChildRunExecutionSnapshot | Builds child run execution snapshot. | source |
buildChildRunExhaustedStepBudgetErrorMessage | Message shape for build child run exhausted step budget error. | source |
buildChildRunFailureResult | Result returned from build child run failure. | source |
buildChildRunFailureSnapshot | Builds child run failure snapshot. | source |
buildChildRunResultCommon | Builds child run result common. | source |
buildChildRunResultSummary | Builds child run result summary. | source |
buildChildRunSuccessResult | Result returned from build child run success. | source |
buildChildRunSuccessSnapshot | Builds child run success snapshot. | source |
buildDefaultHostedChildForkToolSet | Builds default hosted child fork tool set. | source |
buildDefaultResearchArtifactPathReminder | Builds default research artifact path reminder. | source |
buildDefaultResearchArtifactPaths | Builds default research artifact paths. | source |
buildDetachedAgUiStartRequest | Request payload for build detached AG-UI start. | source |
buildDetachedFallbackChunks | Builds detached fallback chunks. | source |
buildDetachedFallbackMessageState | State for build detached fallback message. | source |
buildExecuteToolTraceAttributes | Builds execute tool trace attributes. | source |
buildFinalizedAgentRunTraceAttributes | Builds finalized agent run trace attributes. | source |
buildFinalizedMessageFallbackChunks | Builds finalized message fallback chunks. | source |
buildFinalizedMessageState | State for build finalized message. | source |
buildForkRuntimeStepFromResponse | Response payload for build fork runtime step from. | source |
buildHostedChatRequestForwardedPropsFromRuntimeAgentInvocation | Builds hosted chat request forwarded props from runtime agent invocation. | source |
buildHostedChatRequestFromRuntimeAgentInvocation | Builds hosted chat request from runtime agent invocation. | source |
buildHostedChatRequestInputFromRuntimeAgentInvocation | Builds hosted chat request input from runtime agent invocation. | source |
buildHostedChildCompletedLog | Builds hosted child completed log. | source |
buildHostedChildConversationBody | Builds hosted child conversation body. | source |
buildHostedChildErrorLog | Builds hosted child error log. | source |
buildHostedChildExhaustedStepBudgetLog | Builds hosted child exhausted step budget log. | source |
buildHostedChildForkInstructions | Builds hosted child fork instructions. | source |
buildHostedChildToolDescription | Builds hosted child tool description. | source |
buildHostedDurableChildInvokeFailureResult | Result returned from build hosted durable child invoke failure. | source |
buildHostedDurableChildInvokeSuccessResult | Result returned from build hosted durable child invoke success. | source |
buildHostedDurableChildInvokeTerminalFailureResult | Result returned from build hosted durable child invoke terminal failure. | source |
buildInputRequestLifecycleDataEvent | Event emitted for build input request lifecycle data. | source |
buildInvokeAgentChildRunLifecycleCustomEvent | Event emitted for build invoke agent child run lifecycle custom. | source |
buildInvokeAgentChildRunProgressEvents | Builds invoke agent child run progress events. | source |
buildInvokeAgentChildRunStateDelta | Builds invoke agent child run state delta. | source |
buildInvokeAgentFollowupInstruction | Builds invoke agent followup instruction. | source |
buildInvokeAgentTraceAttributes | Builds invoke agent trace attributes. | source |
buildParsedHostedAgUiRequest | Request payload for build parsed hosted AG-UI. | source |
buildParsedHostedChatRequest | Request payload for build parsed hosted chat. | source |
buildRecoveredStepParts | Builds recovered step parts. | source |
buildRootOwnedChildResultHint | Builds root owned child result hint. | source |
buildRootOwnedChildRunResultHint | Builds root owned child run result hint. | source |
buildRootOwnedChildRunResultText | Builds root owned child run result text. | source |
buildRootOwnedDelegatedFindingsInstruction | Builds root owned delegated findings instruction. | source |
buildRuntimeAgentControlPlaneStreamRequestFromInvocation | Builds runtime agent control plane stream request from invocation. | source |
buildRuntimeAvailableSkillsPromptBlock | Builds runtime available skills prompt block. | source |
buildRuntimeLoadedSkillResponse | Response payload for build runtime loaded skill. | source |
buildRuntimeSkillDefinition | Definition for build runtime skill. | source |
buildStarterIntentRootOwnershipBlockMessage | Message shape for build starter intent root ownership block. | source |
buildStarterIntentRootOwnershipReminder | Builds starter intent root ownership reminder. | source |
buildStudioMcpHeaders | Builds studio MCP headers. | source |
buildVeryfrontCloudRuntimeInstructions | Builds Veryfront Cloud runtime instructions. | source |
cleanupAfterHostedChatExecutionFinalization | Cleanup after hosted chat execution finalization helper. | source |
clearProjectAgentRuntimeRegistries | Clear project agent runtime registries. | source |
clientAllowsStudioMcp | Client allows studio MCP helper. | source |
cloneMirroredToolChunkState | State for clone mirrored tool chunk. | source |
closeChildRunExecutionBuffers | Close child run execution buffers helper. | source |
closeHostedChildReasoningSegment | Close hosted child reasoning segment helper. | source |
closeHostedChildTextSegment | Close hosted child text segment helper. | source |
closeHostedMirroredOpenToolCalls | Close hosted mirrored open tool calls helper. | source |
composeAbortSignals | Compose abort signals helper. | source |
computeOpenToolCalls | Compute open tool calls. | source |
containsExactArtifactPathValue | Contains exact artifact path value helper. | source |
convertAgentRuntimeMessagesToProviderMessages | Convert agent runtime messages to provider messages. | source |
convertCompactedProviderMessagesToChildForkRuntimeMessages | Convert compacted provider messages to child fork runtime messages. | source |
convertProviderMessagesToAgentRuntimeMessages | Convert provider messages to agent runtime messages. | source |
createAgentServiceRegistrationLifecycle | Create agent service registration lifecycle. | source |
createAgentServiceRuntime | Create agent service runtime. | source |
createAgentServiceServerRuntime | Create agent service server runtime. | source |
createAgUiBrowserChunkEncoder | Create AG-UI browser chunk encoder. | source |
createAgUiBrowserEncoderState | State for create AG-UI browser encoder. | source |
createAgUiBrowserFinalizeTracker | Create AG-UI browser finalize tracker. | source |
createAgUiBrowserResponseStream | Create AG-UI browser response stream. | source |
createAgUiCancelHandler | Handler for create AG-UI cancel. | source |
createAgUiChatUiChunkBrowserEncoder | Create AG-UI chat UI chunk browser encoder. | source |
createAgUiChatUiTrackedBrowserResponse | Response payload for create AG-UI chat UI tracked browser. | source |
createAgUiChunkEncoderBridge | Create AG-UI chunk encoder bridge. | source |
createAgUiDetachedStartHandler | Handler for create AG-UI detached start. | source |
createAgUiHandler | Handler for create AG-UI. | source |
createAgUiHandler | Handler for create AG-UI. | source |
createAgUiHandler | Handler for create AG-UI. | source |
createAgUiResumeHandler | Handler for create AG-UI resume. | source |
createAgUiRunErrorEvent | Event emitted for create AG-UI run error. | source |
createAgUiRuntimeBrowserResponse | Response payload for create AG-UI runtime browser. | source |
createAgUiRuntimeChatStreamEncoder | Create AG-UI runtime chat stream encoder. | source |
createAgUiRuntimeContextMap | Create AG-UI runtime context map. | source |
createAgUiRuntimeEventEncoder | Create AG-UI runtime event encoder. | source |
createAgUiRuntimeHandler | Handler for create AG-UI runtime. | source |
createAgUiSseErrorResponse | Response payload for create AG-UI sse error. | source |
createAgUiSseResponse | Response payload for create AG-UI sse. | source |
createAgUiTrackedBrowserResponse | Response payload for create AG-UI tracked browser. | source |
createBootstrappedHostedChatExecutionRuntime | Create bootstrapped hosted chat execution runtime. | source |
createChatUiMessageStreamFromDataStream | Create chat UI message stream from data stream. | source |
createConversationAgentRun | Create conversation agent run. | source |
createConversationChildLifecycleAdapter | Create conversation child lifecycle adapter. | source |
createConversationHostedLifecycleAdapter | Create conversation hosted lifecycle adapter. | source |
createConversationHostedStreamLifecycleAdapter | Create conversation hosted stream lifecycle adapter. | source |
createConversationHostedTerminalAdapter | Create conversation hosted terminal adapter. | source |
createConversationMessage | Message shape for create conversation. | source |
createConversationRecord | Record shape for create conversation. | source |
createConversationRootRunContext | Context for create conversation root run. | source |
createConversationRootRunStartAdapter | Create conversation root run start adapter. | source |
createConversationRunChunkMirror | Create conversation run chunk mirror. | source |
createConversationRunContext | Context for create conversation run. | source |
createConversationRunEventQueueController | Create conversation run event queue controller. | source |
createConversationRunMirror | Create conversation run mirror. | source |
createConversationRunStreamMirror | Create conversation run stream mirror. | source |
createDefaultHostedChatRuntime | Create default hosted chat runtime. | source |
createDefaultHostedInvokeAgentTool | Create default hosted invoke agent tool. | source |
createDefaultHostedProjectSteeringRefresh | Create default hosted project steering refresh. | source |
createDefaultResearchRunArtifactMirrorHandler | Handler for create default research run artifact mirror. | source |
createDetachedRunShutdownLifecycle | Create detached run shutdown lifecycle. | source |
createDetachedRunTracker | Create detached run tracker. | source |
createExternalAgentWorkerClient | Create external agent worker client. | source |
createForkRuntimeStreamMappingState | State for create fork runtime stream mapping. | source |
createForkRuntimeUserMessage | Message shape for create fork runtime user. | source |
createFrameworkStreamState | State for create framework stream. | source |
createHostedAgentProjectSteering | Create hosted agent project steering. | source |
createHostedAgentRunSpanController | Create hosted agent run span controller. | source |
createHostedAgentServiceRouteSet | Create hosted agent service route set. | source |
createHostedAgentServiceRuntime | Create hosted agent service runtime. | source |
createHostedAgUiValidationErrorResponse | Response payload for create hosted AG-UI validation error. | source |
createHostedChatExecutionRuntime | Create hosted chat execution runtime. | source |
createHostedChatExecutionRuntimeBootstrap | Create hosted chat execution runtime bootstrap. | source |
createHostedChatFinalizeDetachedBuildState | State for create hosted chat finalize detached build. | source |
createHostedChatFinalizeResponseBuildState | State for create hosted chat finalize response build. | source |
createHostedChatRuntimeAgentAdapter | Create hosted chat runtime agent adapter. | source |
createHostedChatStreamFinalizationHooks | Create hosted chat stream finalization hooks. | source |
createHostedChildExecutionLogWriter | Create hosted child execution log writer. | source |
createHostedChildForkRunContext | Context for create hosted child fork run. | source |
createHostedChildInvokeTool | Create hosted child invoke tool. | source |
createHostedChildMirrorContext | Context for create hosted child mirror. | source |
createHostedChildPendingToolLifecycle | Create hosted child pending tool lifecycle. | source |
createHostedChildPendingToolLifecycleLogger | Create hosted child pending tool lifecycle logger. | source |
createHostedConversationRunChunkMirror | Create hosted conversation run chunk mirror. | source |
createHostedDurableChildForkRunContext | Context for create hosted durable child fork run. | source |
createHostedDurableChildInvokeTraceRecorder | Create hosted durable child invoke trace recorder. | source |
createHostedFormInputTool | Create hosted form input tool. | source |
createHostedMirroredUiStream | Create hosted mirrored UI stream. | source |
createHostedProjectRemoteToolSource | Create hosted project remote tool source. | source |
createHostedProjectRemoteToolSources | Create hosted project remote tool sources. | source |
createHostedProjectSteeringAdapter | Create hosted project steering adapter. | source |
createHostedRootRunLifecycleRuntimeAdapter | Create hosted root run lifecycle runtime adapter. | source |
createHostedRuntimeStateResolver | Create hosted runtime state resolver. | source |
createHostedServiceAuth | Create hosted service auth. | source |
createInitialForkRuntimeMessages | Create initial fork runtime messages. | source |
createInputRequest | Request payload for create input. | source |
createLiveStudioMcpTools | Create live studio MCP tools. | source |
createMemory | Create memory. | source |
createMirroredToolChunkState | State for create mirrored tool chunk. | source |
createNodeAgentServiceRuntimeInfrastructure | Create node agent service runtime infrastructure. | source |
createNodeVeryfrontCloudAgentServiceRuntime | Create node Veryfront Cloud agent service runtime. | source |
createRedisMemory | Create redis memory. | source |
createRequestAuthCache | Create request auth cache. | source |
createRuntimeAgentDefinitionFromAgent | Create runtime agent definition from agent. | source |
createRuntimeAgentFromMarkdownDefinition | Definition for create runtime agent from markdown. | source |
createRuntimeAgentSystemMessages | Create runtime agent system messages. | source |
createRuntimeLoadSkillTool | Create runtime load skill tool. | source |
createRuntimeProjectFilesClient | Create runtime project files client. | source |
createRuntimeProjectSkillLoader | Create runtime project skill loader. | source |
createRuntimePromptBlock | Create runtime prompt block. | source |
createStreamedStepState | State for create streamed step. | source |
createToolExecutionDataEventBridgeStream | Create tool execution data event bridge stream. | source |
createToolResultPart | Create a chat tool-result part. | source |
createVeryfrontCloudHostedChatExecutionRootRunOptions | Options accepted by create Veryfront Cloud hosted chat execution root run. | source |
createVeryfrontCloudPreparedHostedChatExecutionRuntimeOptions | Options accepted by create Veryfront Cloud prepared hosted chat execution runtime. | source |
createVeryfrontCloudRuntimeSystemMessages | Create Veryfront Cloud runtime system messages. | source |
createWorkflow | Create workflow. | source |
dedupeChatUiMessageChunks | Dedupe chat UI message chunks. | source |
defineAgentService | Define an agent service and expose a policy-neutral runtime shell. | source |
deriveAgUiForwardedConfig | Configuration used by derive AG-UI forwarded. | source |
deriveHostedAgUiChatContext | Context for derive hosted AG-UI chat. | source |
describeProjectAgentRuntimeAgentIdCandidates | Describe project agent runtime agent ID candidates helper. | source |
discoverProjectAgentRuntime | Discover project agent runtime helper. | source |
dispatchConversationHostedStreamErrorState | State for dispatch conversation hosted stream error. | source |
dispatchConversationHostedTerminalState | State for dispatch conversation hosted terminal. | source |
doesProjectAgentRuntimeAgentMatchSource | Does project agent runtime agent match source helper. | source |
encodeConversationRunEvents | Encode conversation run events helper. | source |
ensureConversationProjectLink | Ensure conversation project link helper. | source |
evaluateSlashCommandArtifactPolicy | Evaluate slash command artifact policy helper. | source |
evaluateStarterIntentTurnPolicy | Evaluate starter intent turn policy helper. | source |
executeAgUiDetachedStart | Execute AG-UI detached start. | source |
executeDefaultHostedInvokeAgentTool | Execute default hosted invoke agent tool. | source |
executeDurableHumanInputFlow | Execute durable human input flow. | source |
executeHostedChildForkRunContextStream | Execute hosted child fork run context stream. | source |
executeHostedChildForkStream | Execute hosted child fork stream. | source |
executeHostedChildForkToolInput | Input payload for execute hosted child fork tool. | source |
executeHostedChildForkWithPreparedTools | Execute hosted child fork with prepared tools. | source |
executeHostedDurableChatRun | Execute hosted durable chat run. | source |
executeHostedDurableChildFork | Execute hosted durable child fork. | source |
executeHostedLocalChildInvoke | Execute hosted local child invoke. | source |
expandAllowedRemoteToolNames | Expand allowed remote tool names helper. | source |
expandHostedChildRequestedTools | Expand hosted child requested tools helper. | source |
extractChatMessageMetadata | Extract chat message metadata. | source |
extractLatestUserText | Extract latest user text. | source |
extractStarterIntentId | Extract starter intent ID. | source |
fetchConversationRecord | Record shape for fetch conversation. | source |
fetchDefaultHostedProjectSteering | Fetch default hosted project steering helper. | source |
fetchLatestConversationUserText | Fetch latest conversation user text helper. | source |
filterAgentTraceAttributes | Filter agent trace attributes. | source |
filterHostedChatRuntimeLocalTools | Filter hosted chat runtime local tools. | source |
finalizeAgUiBrowserEvents | Finalize AG-UI browser events helper. | source |
finalizeChildRunExecutionResources | Finalize child run execution resources helper. | source |
finalizeConversationAgentRun | Finalize conversation agent run helper. | source |
finalizeHostedChildForkCompletion | Finalize hosted child fork completion helper. | source |
finalizeHostedChildForkRunContextResources | Finalize hosted child fork run context resources helper. | source |
finalizeHostedDetached | Finalize hosted detached helper. | source |
finalizeHostedResponse | Response payload for finalize hosted. | source |
findLatestUserConversationMessageContext | Context for find latest user conversation message. | source |
flattenSystemInstructions | Flatten system instructions helper. | source |
flushConversationRunEventBatches | Flush conversation run event batches. | source |
flushConversationRunEventQueue | Flush conversation run event queue. | source |
formatChildRunStreamPartError | Error shape for format child run stream part. | source |
formatRuntimeSkillMetadata | Formats runtime skill metadata. | source |
getAgent | Return agent. | source |
getAgentRuntimeTextPart | Return a runtime text part when the value carries text. | source |
getAgentRuntimeToolCallPart | Return a runtime tool-call part when the value carries a tool call. | source |
getAgentRuntimeToolResultPart | Return a runtime tool-result part when the value carries a tool result. | source |
getAgentsAsTools | Return agents as tools. | source |
getAgUiChatUiMessageChunkMetadata | Return AG-UI chat UI message chunk metadata. | source |
getAgUiChatUiMessageMetadataFromChunk | Return AG-UI chat UI message metadata from chunk. | source |
getAgUiChatUiMessageUsageMetadata | Return AG-UI chat UI message usage metadata. | source |
getAgUiSseEventsOfType | Filter parsed AG-UI SSE events by normalized event type. | source |
getAgUiSseStringField | Return a string field from a parsed AG-UI SSE event record. | source |
getAllAgentIds | Return all agent IDs. | source |
getChildRunSnapshotUsage | Return child run snapshot usage. | source |
getConfirmedProjectContextSwitchId | Return confirmed project context switch ID. | source |
getConversationRun | Return conversation run. | source |
getConversationRunEventJsonByteLength | Return conversation run event JSON byte length. | source |
getEmptyHostedFinalizedMessageTerminalError | Error shape for get empty hosted finalized message terminal. | source |
getForkRuntimeAllowedToolNames | Return fork runtime allowed tool names. | source |
getForwardedHostedModelId | Return forwarded hosted model ID. | source |
getForwardedHostedRuntimeOverrides | Return forwarded hosted runtime overrides. | source |
getHostedChildWrittenArtifactPath | Return hosted child written artifact path. | source |
getHostedMirroredAbortErrorText | Return hosted mirrored abort error text. | source |
getHostedServiceTokenFromRequest | Request payload for get hosted service token from. | source |
getHostedStreamErrorText | Return hosted stream error text. | source |
getInputRequest | Request payload for get input. | source |
getMaxForkRuntimeStepCount | Return max fork runtime step count. | source |
getProjectAgentRuntimeAgentIdCandidates | Return project agent runtime agent ID candidates. | source |
getProjectSteeringMutation | Return project steering mutation. | source |
getProviderNativeToolNames | Return provider native tool names. | source |
getProviderToolProfile | Return provider tool profile. | source |
getRuntimeAgentMarkdownDefinition | Definition for get runtime agent markdown. | source |
getRuntimeProjectFile | Return runtime project file. | source |
getRuntimeProjectFiles | Return runtime project files. | source |
getRuntimeProjectInstructions | Return runtime project instructions. | source |
getRuntimeProjectSkillCatalog | Return runtime project skill catalog. | source |
getRuntimeUploadUrl | Return runtime upload URL. | source |
getTextFromParts | Return text from parts. | source |
getToolArguments | Return tool arguments. | source |
handleHostedChildForkFailure | Process a hosted child fork failure. | source |
handleHostedChildForkRunContextError | Error shape for handle hosted child fork run context. | source |
handleHostedChildForkStreamPart | Process a hosted child fork stream part. | source |
hasArgs | Check whether args is present. | source |
hasInput | Input payload for has. | source |
initializeNodeAgentServiceOpenTelemetry | Initialize node agent service open telemetry. | source |
initializeNodeHostedAgentServiceOpenTelemetry | Initialize node hosted agent service open telemetry. | source |
installAbortRejectionGuard | Install abort rejection guard helper. | source |
isAbortRejectionReason | Check whether a rejection came from an abort signal. | source |
isActiveConversationRunStatus | Check whether a conversation run status is active. | source |
isAgentTraceAttributeValue | Check whether a value can be used as an agent trace attribute. | source |
isAlreadyMirroredHostedChunk | Check whether a hosted chunk was already mirrored. | source |
isAppendableConversationRunProjection | Check whether a conversation run projection can accept more events. | source |
isChildRunAbortError | Error shape for is child run abort. | source |
isCursorMismatchConversationRunAppendError | Error shape for is cursor mismatch conversation run append. | source |
isDurableMirroredOutputChunk | Check whether a durable chunk mirrors tool output. | source |
isHostedChildCreateFileAlreadyExistsResult | Result returned from is hosted child create file already exists. | source |
isHostedChildTerminalErrorCode | Check whether a code is a hosted child terminal error. | source |
isHostedChildTextProjectArtifactPrompt | Check whether a prompt asks for a hosted child text project artifact. | source |
isHostedServiceAuthError | Error shape for is hosted service auth. | source |
isIgnorableConversationRunAppendError | Error shape for is ignorable conversation run append. | source |
isResponseLike | Check whether a value behaves like a Response. | source |
isRuntimeAgentMarkdownAgent | Check whether a runtime agent uses markdown configuration. | source |
isStarterIntentRootOwnershipRequired | Check whether starter intent root ownership is required. | source |
isSuccessfulProjectSteeringMutationResult | Result returned from is successful project steering mutation. | source |
listRuntimeBuiltinSkillReferenceFiles | List runtime builtin skill reference files. | source |
listRuntimeBuiltinSkillReferences | List runtime builtin skill references. | source |
loadAgentServiceEnvFiles | Loads agent service env files. | source |
loadRuntimeAgentMarkdownDefinitionFromFile | Loads runtime agent markdown definition from file. | source |
loadRuntimeBuiltinSkillCatalog | Loads runtime builtin skill catalog. | source |
mapAgUiRuntimeEventToForkParts | Map AG-UI runtime event to fork parts. | source |
mapFrameworkEventToForkParts | Handles map framework event to fork parts. | source |
mapHostedStreamPartToChatUiChunks | Map hosted stream part to chat UI chunks. | source |
mapRuntimeStreamEventToAgUiBrowserEvents | Map runtime stream event to AG-UI browser events. | source |
mergeToolCallInput | Input payload for merge tool call. | source |
mergeToolInputDelta | Merge tool input delta helper. | source |
mirrorDefaultResearchRunArtifact | Mirror default research run artifact helper. | source |
monitorConversationRunStatus | Monitor conversation run status helper. | source |
monitorHostedChildRunStatus | Monitor hosted child run status helper. | source |
normalizeAgUiBrowserRuntimeRequest | Request payload for normalize AG-UI browser runtime. | source |
normalizeAgUiMessages | Normalizes AG-UI messages. | source |
normalizeAgUiRuntimeMessages | Normalizes AG-UI runtime messages. | source |
normalizeChatMessageMetadata | Normalizes chat message metadata. | source |
normalizeChatUiMessageChunk | Normalizes chat UI message chunk. | source |
normalizeChatUiMessageChunkToAgUiRuntimeEvent | Event emitted for normalize chat UI message chunk to AG-UI runtime. | source |
normalizeChatUiMessageStream | Normalizes chat UI message stream. | source |
normalizeConversationRunEvent | Event emitted for normalize conversation run. | source |
normalizeConversationRunEvents | Normalizes conversation run events. | source |
normalizeEncodedConversationRunEvents | Normalizes encoded conversation run events. | source |
normalizeHostedChildArtifactPath | Normalizes hosted child artifact path. | source |
normalizeParsedHostedChatRequest | Request payload for normalize parsed hosted chat. | source |
normalizeRuntimeSkillReferencePath | Normalizes runtime skill reference path. | source |
parseAgentServiceConfig | Configuration used by parse agent service. | source |
parseAgUiContextBoolean | Parses AG-UI context boolean. | source |
parseAgUiContextJsonValue | Parses AG-UI context JSON value. | source |
parseAgUiContextNullableString | Parses AG-UI context nullable string. | source |
parseAgUiContextSchema | Zod schema for parse AG-UI context. | source |
parseAgUiContextString | Parses AG-UI context string. | source |
parseAgUiRequest | Request payload for parse AG-UI. | source |
parseAgUiRequestOrError | Error shape for parse AG-UI request or. | source |
parseAgUiRuntimeRequest | Request payload for parse AG-UI runtime. | source |
parseAgUiRuntimeRequestOrError | Error shape for parse AG-UI runtime request or. | source |
parseAgUiSseResponse | Parse an AG-UI SSE Response into normalized events, text, tool starts, and terminal error state. | source |
parseAppendConversationRunEventsErrorBody | Parses append conversation run events error body. | source |
parseDataStreamSseEvents | Parses data stream sse events. | source |
parseHostedAgentServiceConfig | Configuration used by parse hosted agent service. | source |
parseHostedChatRequestFromRequest | Request payload for parse hosted chat request from. | source |
parseRuntimeAgentMarkdownDefinition | Definition for parse runtime agent markdown. | source |
parseRuntimeAgentRunInvocation | Parses runtime agent run invocation. | source |
parseRuntimeAgentRunInvocationHostedChatRequestFromRequest | Request payload for parse runtime agent run invocation hosted chat request from. | source |
parseRuntimeAgentRunInvocationOrError | Error shape for parse runtime agent run invocation or. | source |
parseRuntimeSkillDocument | Parses runtime skill document. | source |
parseRuntimeSkillMetadata | Parses runtime skill metadata. | source |
parseToolInputObject | Parses tool input object. | source |
persistConversationUserMessage | Message shape for persist conversation user. | source |
persistLatestConversationUserMessage | Message shape for persist latest conversation user. | source |
prepareAgentRuntimeMessagesFromUiMessages | Prepare agent runtime messages from UI messages. | source |
prepareConversationRootRunContext | Context for prepare conversation root run. | source |
prepareConversationRootRunLifecycle | Prepare conversation root run lifecycle. | source |
prepareConversationRunChunkEvents | Prepare conversation run chunk events. | source |
prepareConversationRunExternalEvents | Prepare conversation run external events. | source |
prepareConversationRunStreamEvents | Prepare conversation run stream events. | source |
prepareDefaultHostedChildForkRuntimeTools | Prepare default hosted child fork runtime tools. | source |
prepareDefaultHostedChildForkSandboxToolSources | Prepare default hosted child fork sandbox tool sources. | source |
prepareDefaultHostedChildForkToolAssembly | Prepare default hosted child fork tool assembly. | source |
prepareDefaultHostedChildForkToolSources | Prepare default hosted child fork tool sources. | source |
prepareHostedChatExecution | Prepare hosted chat execution. | source |
prepareHostedChatRuntimeCreationOptions | Options accepted by prepare hosted chat runtime creation. | source |
prepareHostedChatRuntimeMessages | Prepare hosted chat runtime messages. | source |
prepareHostedChatRuntimeToolAssembly | Prepare hosted chat runtime tool assembly. | source |
prepareHostedChildForkRuntimeStepMessages | Prepare hosted child fork runtime step messages. | source |
prepareHostedConversationRootRunContext | Context for prepare hosted conversation root run. | source |
prepareVeryfrontCloudHostedChatExecution | Prepare Veryfront Cloud hosted chat execution. | source |
publishInvokeAgentChildRunProgress | Publish invoke agent child run progress helper. | source |
readRuntimeBuiltinDirectorySkill | Read runtime builtin directory skill helper. | source |
readRuntimeBuiltinFlatSkill | Read runtime builtin flat skill helper. | source |
readRuntimeBuiltinSkill | Read runtime builtin skill helper. | source |
readRuntimeBuiltinSkillEntries | Read runtime builtin skill entries helper. | source |
readRuntimeBuiltinSkillReferenceFile | Read runtime builtin skill reference file helper. | source |
recordMirroredToolChunkState | State for record mirrored tool chunk. | source |
recoverConversationRunAppendExecution | Recover conversation run append execution helper. | source |
recoverConversationRunAppendFailure | Recover conversation run append failure helper. | source |
recoverConversationRunCursorMismatch | Recover conversation run cursor mismatch helper. | source |
registerAgent | Registers agent. | source |
resolveAgentServiceRegistrationInput | Input payload for resolve agent service registration. | source |
resolveConversationHostedStreamErrorState | State for resolve conversation hosted stream error. | source |
resolveConversationHostedTerminalState | State for resolve conversation hosted terminal. | source |
resolveConversationRunTargets | Resolves conversation run targets. | source |
resolveForkRuntimeContinuationState | State for resolve fork runtime continuation. | source |
resolveForkStepResponse | Response payload for resolve fork step. | source |
resolveHostedChildForkRuntimeConfig | Configuration used by resolve hosted child fork runtime. | source |
resolveHostedChildForkThinkingOverride | Resolves hosted child fork thinking override. | source |
resolveHostedChildPromiseWithTimeout | Resolves hosted child promise with timeout. | source |
resolveHostedChildStreamWatchdogState | State for resolve hosted child stream watchdog. | source |
resolveHostedChildTerminalErrorCode | Resolves a code is a hosted child terminal error. | source |
resolveHostedDurableRunSetupErrorResponse | Response payload for resolve hosted durable run setup error. | source |
resolveHostedRuntimeRequestConfig | Configuration used by resolve hosted runtime request. | source |
resolveHostedRuntimeThinkingOverride | Resolves hosted runtime thinking override. | source |
resolveNodeAgentServiceTelemetryConfig | Configuration used by resolve node agent service telemetry. | source |
resolveNodeHostedAgentServiceTelemetryConfig | Configuration used by resolve node hosted agent service telemetry. | source |
resolveRuntimeAgentDefinitionsDir | Resolves runtime agent definitions dir. | source |
resolveRuntimeAgentMarkdownDefinitionFilePath | Resolves runtime agent markdown definition file path. | source |
resolveRuntimeBuiltinSkillReferenceFilePath | Resolves runtime builtin skill reference file path. | source |
resolveRuntimeBuiltinSkillsDir | Resolves runtime builtin skills dir. | source |
resolveRuntimeClientProfile | Resolves runtime client profile. | source |
resolveRuntimeMessageFileUrls | Resolves runtime message file urls. | source |
resolveSingleProjectAgentRuntimeAgentId | Resolves single project agent runtime agent ID. | source |
resyncConversationRunAppendCursor | Resync conversation run append cursor helper. | source |
runAgentRuntimeForkStep | Run agent runtime fork step. | source |
runAgentServiceMain | Run agent service main. | source |
runFrameworkForkStep | Handles run framework fork step. | source |
runHostedChildExecutionLifecycle | Run hosted child execution lifecycle. | source |
runHostedChildLifecycle | Run hosted child lifecycle. | source |
runHostedLifecycle | Run hosted lifecycle. | source |
runHostedResponseStreamWithHeartbeat | Run hosted response stream with heartbeat. | source |
runPreparedHostedChatExecutionDetached | Run prepared hosted chat execution detached. | source |
sanitizeDefaultHostedChildRequestedTools | Sanitize default hosted child requested tools. | source |
sanitizeHostedChildRequestedTools | Sanitize hosted child requested tools. | source |
sanitizeProviderToolSchema | Zod schema for sanitize provider tool. | source |
selectDefaultHostedChildForkRuntimeTools | Select default hosted child fork runtime tools helper. | source |
selectHostedChildForkRuntimeTools | Select hosted child fork runtime tools helper. | source |
selectProviderCompatibleToolNames | Select provider compatible tool names helper. | source |
selectProviderCompatibleTools | Select provider compatible tools helper. | source |
shouldBlockHostedChildSameTurnRetry | Should block hosted child same turn retry helper. | source |
shouldContinueForkRuntimeStep | Should continue fork runtime step helper. | source |
shouldFailEmptyHostedFinalizedMessage | Message shape for should fail empty hosted finalized. | source |
shouldInjectDefaultResearchArtifactPath | Should inject default research artifact path helper. | source |
shouldPruneSandboxToolsFromHostedChildRequest | Request payload for should prune sandbox tools from hosted child. | source |
shouldReinforceLoadSkillContinuation | Should reinforce load skill continuation helper. | source |
shouldRetryCreateResearchArtifactAsUpdate | Should retry create research artifact as update helper. | source |
shouldSkipHostedChildTerminalPersistence | Should skip hosted child terminal persistence helper. | source |
startAgentRuntimeFork | Starts agent runtime fork. | source |
startAgentRuntimeForkWithHostTools | Starts agent runtime fork with host tools. | source |
startAgentService | Starts agent service. | source |
startAgentServiceRuntime | Starts agent service runtime. | source |
startAgentServiceServer | Starts agent service server. | source |
startConversationRootRun | Starts conversation root run. | source |
startHostedChildForkRuntimeWithHostTools | Starts hosted child fork runtime with host tools. | source |
startNodeAgentService | Starts node agent service. | source |
startNodeAgentServiceServer | Starts node agent service server. | source |
startNodeHostedAgentService | Starts node hosted agent service. | source |
startNodeVeryfrontCloudAgentService | Starts node Veryfront Cloud agent service. | source |
streamDataStreamEvents | Stream data stream events helper. | source |
streamPreparedHostedChatExecutionToAgUiResponse | Response payload for stream prepared hosted chat execution to AG-UI. | source |
stringifyAgUiSseEvent | Stringify an AG-UI SSE event or fallback value for diagnostics. | source |
stripLeadingEmptyObjectPlaceholder | Normalize provider tool input by removing transient empty-object prefixes. | source |
summarizeChildRunResultText | Summarize child run result text helper. | source |
summarizeChildRunResultValue | Summarize child run result value helper. | source |
throwIfChildRunAborted | Throw if child run aborted helper. | source |
toChildRunToolInputRecord | Record shape for to child run tool input. | source |
toConversationHostedTerminalState | State for to conversation hosted terminal. | source |
toConversationRunStreamEvent | Event emitted for to conversation run stream. | source |
toHostedChatExecutionFinalState | State for to hosted chat execution final. | source |
toMirroredHostedStreamPart | Converts a value to mirrored hosted stream part. | source |
updateDefaultResearchArtifacts | Update default research artifacts helper. | source |
validateRuntimeAgentTargetSelection | Validates runtime agent target selection. | source |
veryfrontMcpServer | Veryfront MCP server helper. | source |
waitForDurableHumanInputResolution | Wait for durable human input resolution helper. | source |
waitForHumanInput | Input payload for wait for human. | source |
withDefaultResearchArtifactPath | Applies default research artifact path. | source |
withHostedChildRerunnableFileWriteFallbacks | Applies hosted child rerunnable file write fallbacks. | source |
withHostedChildStreamIdleTimeout | Applies hosted child stream idle timeout. | source |
withRootOwnedChildResultHint | Applies root owned child result hint. | source |
withRuntimeToolInventory | Applies runtime tool inventory. | source |
wrapHostedChildProjectSwitchTool | Wrap hosted child project switch tool helper. | source |
wrapHostedChildSteeringMutationTool | Wrap hosted child steering mutation tool helper. | source |
writeHostedChildExecutionLogEntry | Entry shape for write hosted child execution log. | source |
Classes
| Name | Description | Source |
|---|---|---|
AgentRuntime | Implement agent runtime. | source |
AgentRuntimeMessageConversionError | Error shape for agent runtime message conversion. | source |
AppendConversationRunEventsError | Error shape for append conversation run events. | source |
BufferMemory | Implement buffer memory. | source |
ConversationMemory | Implement conversation memory. | source |
ConversationRunEventEncoder | Implement conversation run event encoder. | source |
ConversationRunTerminalStateError | Error shape for conversation run terminal state. | source |
HostedChildStreamIdleTimeoutError | Error shape for hosted child stream idle timeout. | source |
HostedChildTerminalStateError | Error shape for hosted child terminal state. | source |
HostedServiceAuthError | Error shape for hosted service auth. | source |
HumanInputResumeError | Error shape for human input resume. | source |
InvalidHumanInputResultError | Error shape for invalid human input result. | source |
RedisMemory | Implement redis memory. | source |
RunAlreadyExistsError | Error shape for run already exists. | source |
RunCancelledError | Error shape for run cancelled. | source |
RunNotActiveError | Error shape for run not active. | source |
RunResumeSessionManager | Implement run resume session manager. | source |
RuntimeProjectFilesApiAuthError | Error shape for runtime project files API auth. | source |
SummaryMemory | Implement summary memory. | source |
WaitConflictError | Error shape for wait conflict. | source |
WaitNotPendingError | Error shape for wait not pending. | source |
Types
| Name | Description | Source |
|---|---|---|
AbortRejectionEvent | Event emitted for abort rejection. | source |
AbortRejectionEventTarget | Public API contract for abort rejection event target. | source |
AbortRejectionGuardLogger | Public API contract for abort rejection guard logger. | source |
AbortRejectionProcessTarget | Public API contract for abort rejection process target. | source |
ActiveConversationRunStatus | Public API contract for a conversation run status is active. | source |
Agent | Public API contract for agent. | source |
AgentConfig | Configuration used by agent. | source |
AgentContext | Context for agent. | source |
AgentContract | Framework-owned agent service contract. | source |
AgentMessage | Message exchanged with an agent. | source |
AgentMiddleware | Public API contract for agent middleware. | source |
AgentPushRuntimeServiceRest | Public API contract for agent push runtime service rest. | source |
AgentRegistry | Public API contract for agent registry. | source |
AgentResponse | Response payload for agent. | source |
AgentRuntimeForkStepRunner | Public API contract for agent runtime fork step runner. | source |
AgentRuntimeMessage | Message shape for agent runtime. | source |
AgentRuntimeMessagePart | Public API contract for agent runtime message part. | source |
AgentServiceBootstrapExit | Public API contract for agent service bootstrap exit. | source |
AgentServiceConfig | Configuration used by agent service. | source |
AgentServiceConfigInput | Input payload for agent service config. | source |
AgentServiceCorsConfig | Configuration used by agent service cors. | source |
AgentServiceDefinition | Type-preserving service definition for request-native agent service runtimes. | source |
AgentServiceEnvFileLoadOptions | Options accepted by agent service env file load. | source |
AgentServiceEnvFileLoadResult | Result returned from agent service env file load. | source |
AgentServiceOptions | Options accepted by agent service. | source |
AgentServicePreparedExecution | Public API contract for agent service prepared execution. | source |
AgentServiceProcessTarget | Public API contract for agent service process target. | source |
AgentServiceRegistrationConfig | Configuration used by agent service registration. | source |
AgentServiceRegistrationLifecycle | Public API contract for agent service registration lifecycle. | source |
AgentServiceRegistrationLogger | Public API contract for agent service registration logger. | source |
AgentServiceRegistrationMode | Public API contract for agent service registration mode. | source |
AgentServiceRegistryContract | Multi-agent service contract. Framework services route to defaultAgentId unless the host chooses another registered agent. | source |
AgentServiceRoute | Public API contract for agent service route. | source |
AgentServiceRouteMethod | Host-facing server config for the agent service runtime shell. | source |
AgentServiceRuntimeBundle | Public API contract for agent service runtime bundle. | source |
AgentServiceRuntimeConfig | Configuration used by agent service runtime. | source |
AgentServiceRuntimeLogger | Public API contract for agent service runtime logger. | source |
AgentServiceRuntimeTrace | Public API contract for agent service runtime trace. | source |
AgentServiceServer | Public API contract for agent service server. | source |
AgentServiceServerConfig | Configuration used by agent service server. | source |
AgentServiceServerLifecycle | Public API contract for agent service server lifecycle. | source |
AgentServiceSingleAgentContract | Single-agent convenience accepted by defineAgentService(). Implementations must normalize this shape into the same registry path used by multi-agent services so framework users are not boxed into one-agent-per-process. | source |
AgentServiceTraceContext | Context for agent service trace. | source |
AgentServiceTraceContextGetter | Public API contract for agent service trace context getter. | source |
AgentStatus | Public API contract for agent status. | source |
AgentStreamResult | Result returned from agent stream. | source |
AgentTraceAttributes | Public API contract for agent trace attributes. | source |
AgentTraceAttributeValue | Public API contract for a value can be used as an agent trace attribute. | source |
AgentTraceUsage | Public API contract for agent trace usage. | source |
AgUiBeforeStream | Public API contract for AG-UI before stream. | source |
AgUiBeforeStreamContext | Context for AG-UI before stream. | source |
AgUiBeforeStreamMessageInput | Input payload for AG-UI before stream message. | source |
AgUiBeforeStreamResult | Result returned from AG-UI before stream. | source |
AgUiBrowserChunkEncoder | Public API contract for AG-UI browser chunk encoder. | source |
AgUiBrowserEncodedEvent | Event emitted for AG-UI browser encoded. | source |
AgUiBrowserEncoderState | State for AG-UI browser encoder. | source |
AgUiBrowserFinalizeTracker | Public API contract for AG-UI browser finalize tracker. | source |
AgUiBrowserResponseEncoder | Public API contract for AG-UI browser response encoder. | source |
AgUiBrowserResponseExecution | Public API contract for AG-UI browser response execution. | source |
AgUiBrowserResponseRequestState | State for AG-UI browser response request. | source |
AgUiBrowserRunFinishedMetadata | Public API contract for AG-UI browser run finished metadata. | source |
AgUiCancelHandlerOptions | Options accepted by AG-UI cancel handler. | source |
AgUiChatUiChunkBrowserEncoder | Public API contract for AG-UI chat UI chunk browser encoder. | source |
AgUiChunkEncoderBridge | Public API contract for AG-UI chunk encoder bridge. | source |
AgUiContextItem | Public API contract for AG-UI context item. | source |
AgUiDetachedStartAccepted | Public API contract for AG-UI detached start accepted. | source |
AgUiDetachedStartHandlerOptions | Options accepted by AG-UI detached start handler. | source |
AgUiDetachedStartRequest | Request payload for AG-UI detached start. | source |
AgUiForwardedConfigOptions | Options accepted by AG-UI forwarded config. | source |
AgUiHandlerConfigWithAgent | Public API contract for AG-UI handler config with agent. | source |
AgUiHandlerOptions | Options accepted by AG-UI handler. | source |
AgUiInjectedTool | Public API contract for AG-UI injected tool. | source |
AgUiRequest | Request payload for AG-UI. | source |
AgUiResumeHandlerOptions | Options accepted by AG-UI resume handler. | source |
AgUiResumeSignal | Public API contract for AG-UI resume signal. | source |
AgUiResumeValue | Public API contract for AG-UI resume value. | source |
AgUiRuntimeChatStreamEncoder | Public API contract for AG-UI runtime chat stream encoder. | source |
AgUiRuntimeChatStreamEncoderState | State for AG-UI runtime chat stream encoder. | source |
AgUiRuntimeContextItem | Public API contract for AG-UI runtime context item. | source |
AgUiRuntimeEventEncoder | Public API contract for AG-UI runtime event encoder. | source |
AgUiRuntimeHandlerConfig | Configuration used by AG-UI runtime handler. | source |
AgUiRuntimeHandlerConfigWithAgent | Public API contract for AG-UI runtime handler config with agent. | source |
AgUiRuntimeHandlerExecute | Public API contract for AG-UI runtime handler execute. | source |
AgUiRuntimeHandlerExecuteInput | Input payload for AG-UI runtime handler execute. | source |
AgUiRuntimeHandlerOptions | Options accepted by AG-UI runtime handler. | source |
AgUiRuntimeInjectedTool | Public API contract for AG-UI runtime injected tool. | source |
AgUiRuntimeLifecycleContext | Context for AG-UI runtime lifecycle. | source |
AgUiRuntimeMessage | Message shape for AG-UI runtime. | source |
AgUiRuntimeRequest | Request payload for AG-UI runtime. | source |
AgUiRuntimeStreamEvent | Event emitted for AG-UI runtime stream. | source |
AgUiSseEvent | Event emitted for AG-UI sse. | source |
AgUiSseEventType | Normalized AG-UI runtime event type value. | source |
AgUiSseProgressSnapshot | Progress snapshot emitted while parsing an AG-UI SSE response. | source |
AppendConversationRunEventsResponse | Response payload for append conversation run events. | source |
AppendExternalAgentWorkerRunEventsInput | Input payload for append external agent worker run events. | source |
BootstrapAgentServiceOptions | Options accepted by bootstrap agent service. | source |
BootstrapConversationAgentRunResult | Result returned from bootstrap conversation agent run. | source |
BootstrapHostedChildRunInput | Input payload for bootstrap hosted child run. | source |
BootstrapHostedChildRunResult | Result returned from bootstrap hosted child run. | source |
BootstrappedHostedChatExecutionRuntime | Public API contract for bootstrapped hosted chat execution runtime. | source |
BuildChatStreamChunkMessageMetadataInput | Input payload for build chat stream chunk message metadata. | source |
BuildDetachedFallbackChunksInput | Input payload for build detached fallback chunks. | source |
BuildDetachedFallbackMessageInput | Input payload for build detached fallback message. | source |
BuildFinalizedMessageFallbackChunksInput | Input payload for build finalized message fallback chunks. | source |
BuildFinalizedMessageStateInput | Input payload for build finalized message state. | source |
BuildHostedDurableChildInvokeFailureResultInput | Input payload for build hosted durable child invoke failure result. | source |
BuildParsedHostedAgUiRequestOptions | Options accepted by build parsed hosted AG-UI request. | source |
CachedRequestAuthResult | Result returned from cached request auth. | source |
ChatMessageMetadata | Public API contract for chat message metadata. | source |
ChatMessageMetadataUsage | Public API contract for chat message metadata usage. | source |
ChatUiMessageChunk | Public API contract for chat UI message chunk. | source |
ChatUiMessageStreamFinish | Public API contract for chat UI message stream finish. | source |
ChatUiMessageStreamFinishPart | Public API contract for chat UI message stream finish part. | source |
ChatUiMessageStreamOptions | Options accepted by chat UI message stream. | source |
ChildRunAudit | Public API contract for child run audit. | source |
ChildRunAuditToolCall | Public API contract for child run audit tool call. | source |
ChildRunAuditToolResult | Result returned from child run audit tool. | source |
ChildRunExecutionBufferCleanupInput | Input payload for child run execution buffer cleanup. | source |
ChildRunExecutionResourceFinalizeInput | Input payload for child run execution resource finalize. | source |
ChildRunExecutionResult | Result returned from child run execution. | source |
ChildRunExecutionSnapshot | Public API contract for child run execution snapshot. | source |
ChildRunExecutionUsage | Public API contract for child run execution usage. | source |
ChildRunResultCommon | Public API contract for child run result common. | source |
ChildRunToolCallSnapshot | Public API contract for child run tool call snapshot. | source |
ChildRunToolResultSnapshot | Public API contract for child run tool result snapshot. | source |
ClaimExternalAgentWorkerRunInput | Input payload for claim external agent worker run. | source |
CloseHostedMirroredOpenToolCallsInput | Input payload for close hosted mirrored open tool calls. | source |
CompleteExternalAgentWorkerRunInput | Input payload for complete external agent worker run. | source |
ConversationAgentRunUsage | Public API contract for conversation agent run usage. | source |
ConversationChildLifecycleContext | Context for conversation child lifecycle. | source |
ConversationControlPlaneResponseError | Error shape for conversation control plane response. | source |
ConversationHostedLifecycleFinalizeInput | Input payload for conversation hosted lifecycle finalize. | source |
ConversationHostedTerminalAdapter | Public API contract for conversation hosted terminal adapter. | source |
ConversationHostedTerminalRuntimeAdapter | Public API contract for conversation hosted terminal runtime adapter. | source |
ConversationHostedTerminalStateInput | Input payload for conversation hosted terminal state. | source |
ConversationHostedTerminalStateResolution | Public API contract for conversation hosted terminal state resolution. | source |
ConversationMessageRecord | Record shape for conversation message. | source |
ConversationRecord | Record shape for conversation. | source |
ConversationRootRunContext | Context for conversation root run. | source |
ConversationRootRunDescriptor | Public API contract for conversation root run descriptor. | source |
ConversationRootRunLifecycle | Public API contract for conversation root run lifecycle. | source |
ConversationRunAppendCursorResyncResult | Result returned from conversation run append cursor resync. | source |
ConversationRunAppendExecutionOutcome | Public API contract for conversation run append execution outcome. | source |
ConversationRunAppendFailureOutcome | Public API contract for conversation run append failure outcome. | source |
ConversationRunAppendRecoveryOutcome | Public API contract for conversation run append recovery outcome. | source |
ConversationRunBatchFlushOutcome | Public API contract for conversation run batch flush outcome. | source |
ConversationRunChunkMirror | Public API contract for conversation run chunk mirror. | source |
ConversationRunChunkMirrorApiOptions | Options accepted by conversation run chunk mirror API. | source |
ConversationRunChunkMirrorOptions | Options accepted by conversation run chunk mirror. | source |
ConversationRunChunkMirrorPrepareChunkEventsInput | Input payload for conversation run chunk mirror prepare chunk events. | source |
ConversationRunChunkMirrorPreparedChunk | Public API contract for conversation run chunk mirror prepared chunk. | source |
ConversationRunChunkMirrorPreparedEvents | Public API contract for conversation run chunk mirror prepared events. | source |
ConversationRunChunkMirrorPrepareExternalEventsInput | Input payload for conversation run chunk mirror prepare external events. | source |
ConversationRunChunkMirrorQueueOptions | Options accepted by conversation run chunk mirror queue. | source |
ConversationRunContext | Context for conversation run. | source |
ConversationRunEvent | Event emitted for conversation run. | source |
ConversationRunEventQueueController | Public API contract for conversation run event queue controller. | source |
ConversationRunMirror | Public API contract for conversation run mirror. | source |
ConversationRunMirrorRetryScheduledState | State for conversation run mirror retry scheduled. | source |
ConversationRunMirrorSnapshot | Public API contract for conversation run mirror snapshot. | source |
ConversationRunMirrorStoppedState | State for conversation run mirror stopped. | source |
ConversationRunProjection | Public API contract for conversation run projection. | source |
ConversationRunQueueFlushOutcome | Public API contract for conversation run queue flush outcome. | source |
ConversationRunStreamMirror | Public API contract for conversation run stream mirror. | source |
ConversationRunTargets | Public API contract for conversation run targets. | source |
CreateAgentServiceRegistrationLifecycleOptions | Options accepted by create agent service registration lifecycle. | source |
CreateAgentServiceRuntimeOptions | Options accepted by create agent service runtime. | source |
CreateAgentServiceServerRuntimeOptions | Options accepted by create agent service server runtime. | source |
CreateAgUiBrowserChunkEncoderOptions | Options accepted by create AG-UI browser chunk encoder. | source |
CreateAgUiBrowserFinalizeTrackerOptions | Options accepted by create AG-UI browser finalize tracker. | source |
CreateAgUiBrowserResponseStreamInput | Input payload for create AG-UI browser response stream. | source |
CreateAgUiChatUiChunkBrowserEncoderOptions | Options accepted by create AG-UI chat UI chunk browser encoder. | source |
CreateAgUiChatUiTrackedBrowserResponseInput | Input payload for create AG-UI chat UI tracked browser response. | source |
CreateAgUiChunkEncoderBridgeOptions | Options accepted by create AG-UI chunk encoder bridge. | source |
CreateAgUiRuntimeBrowserResponseInput | Input payload for create AG-UI runtime browser response. | source |
CreateAgUiRuntimeChatStreamEncoderOptions | Options accepted by create AG-UI runtime chat stream encoder. | source |
CreateAgUiRuntimeEventEncoderOptions | Options accepted by create AG-UI runtime event encoder. | source |
CreateAgUiTrackedBrowserResponseInput | Input payload for create AG-UI tracked browser response. | source |
CreateBootstrappedHostedChatExecutionRuntimeInput | Input payload for create bootstrapped hosted chat execution runtime. | source |
CreateConversationHostedLifecycleAdapterOptions | Options accepted by create conversation hosted lifecycle adapter. | source |
CreateConversationHostedTerminalAdapterOptions | Options accepted by create conversation hosted terminal adapter. | source |
CreateDefaultHostedChatRuntimeContextInput | Input payload for create default hosted chat runtime context. | source |
CreateDefaultHostedChatRuntimeOptions | Options accepted by create default hosted chat runtime. | source |
CreateDefaultHostedProjectSteeringRefreshOptions | Options accepted by create default hosted project steering refresh. | source |
CreateHostedAgentRunSpanControllerInput | Input payload for create hosted agent run span controller. | source |
CreateHostedAgentServiceRuntimeOptions | Options accepted by create hosted agent service runtime. | source |
CreateHostedChatExecutionRuntimeBootstrapInput | Input payload for create hosted chat execution runtime bootstrap. | source |
CreateHostedChatExecutionRuntimeInput | Input payload for create hosted chat execution runtime. | source |
CreateHostedChildInvokeToolOptions | Options accepted by create hosted child invoke tool. | source |
CreateHostedMirroredUiStreamInput | Input payload for create hosted mirrored UI stream. | source |
CreateHostedProjectRemoteToolSourceInput | Input payload for create hosted project remote tool source. | source |
CreateHostedProjectRemoteToolSourcesInput | Input payload for create hosted project remote tool sources. | source |
CreateHostedRootRunLifecycleRuntimeAdapterInput | Input payload for create hosted root run lifecycle runtime adapter. | source |
CreateHostedRuntimeStateResolverOptions | Options accepted by create hosted runtime state resolver. | source |
CreateNodeAgentServiceRuntimeInfrastructureOptions | Options accepted by create node agent service runtime infrastructure. | source |
CreateNodeHostedAgentServiceRuntimeInfrastructureOptions | Options accepted by create node hosted agent service runtime infrastructure. | source |
CreateRequestAuthCacheOptions | Options accepted by create request auth cache. | source |
CreateRuntimeAgentSystemMessagesInput | Input payload for create runtime agent system messages. | source |
CreateVeryfrontCloudPreparedHostedChatExecutionRuntimeOptionsInput | Input payload for create Veryfront Cloud prepared hosted chat execution runtime options. | source |
CreateVeryfrontCloudRuntimeSystemMessagesInput | Input payload for create Veryfront Cloud runtime system messages. | source |
DefaultHostedChatRuntimeConfig | Configuration used by default hosted chat runtime. | source |
DefaultHostedChatRuntimeCreationOptions | Options accepted by default hosted chat runtime creation. | source |
DefaultHostedChatRuntimeLogger | Public API contract for default hosted chat runtime logger. | source |
DefaultHostedChatRuntimeProjectSwitchInput | Input payload for default hosted chat runtime project switch. | source |
DefaultHostedChatRuntimeSteeringMutationInput | Input payload for default hosted chat runtime steering mutation. | source |
DefaultHostedChatRuntimeSystemRefreshInput | Input payload for default hosted chat runtime system refresh. | source |
DefaultHostedChatRuntimeTaskContext | Context for default hosted chat runtime task. | source |
DefaultHostedChildForkRuntimeToolPreparationResult | Result returned from default hosted child fork runtime tool preparation. | source |
DefaultHostedChildForkToolAssemblyResult | Result returned from default hosted child fork tool assembly. | source |
DefaultHostedChildForkToolAssemblySourceResult | Result returned from default hosted child fork tool assembly source. | source |
DefaultHostedChildForkToolSourcesResult | Result returned from default hosted child fork tool sources. | source |
DefaultHostedInvokeAgentConfig | Configuration used by default hosted invoke agent. | source |
DefaultHostedInvokeAgentContext | Context for default hosted invoke agent. | source |
DefaultHostedInvokeAgentInput | Input payload for default hosted invoke agent. | source |
DefaultHostedInvokeAgentLogger | Public API contract for default hosted invoke agent logger. | source |
DefaultHostedInvokeAgentProjectRefresh | Public API contract for default hosted invoke agent project refresh. | source |
DefaultHostedInvokeAgentToolOptions | Options accepted by default hosted invoke agent tool. | source |
DefaultHostedInvokeAgentToolResult | Result returned from default hosted invoke agent tool. | source |
DefaultHostedInvokeAgentTrace | Public API contract for default hosted invoke agent trace. | source |
DefaultHostedInvokeAgentTraceAttributes | Public API contract for default hosted invoke agent trace attributes. | source |
DefaultHostedProjectSteeringFetchers | Public API contract for default hosted project steering fetchers. | source |
DefaultHostedProjectSteeringRefreshLogger | Public API contract for default hosted project steering refresh logger. | source |
DefaultHostedProjectSteeringRefreshLookup | Public API contract for default hosted project steering refresh lookup. | source |
DefaultResearchArtifactContext | Context for default research artifact. | source |
DefaultResearchArtifactLogger | Public API contract for default research artifact logger. | source |
DefaultResearchArtifactPaths | Public API contract for default research artifact paths. | source |
DefaultResearchArtifacts | Public API contract for default research artifacts. | source |
DerivedHostedAgUiChatContext | Context for derived hosted AG-UI chat. | source |
DetachedFallbackMessageState | State for detached fallback message. | source |
DetachedRunDrainResult | Result returned from detached run drain. | source |
DetachedRunShutdownLifecycle | Public API contract for detached run shutdown lifecycle. | source |
DetachedRunShutdownLifecycleOptions | Options accepted by detached run shutdown lifecycle. | source |
DetachedRunShutdownLogger | Public API contract for detached run shutdown logger. | source |
DetachedRunTracker | Public API contract for detached run tracker. | source |
DetachedRunTrackerOptions | Options accepted by detached run tracker. | source |
DiscoverProjectAgentRuntimeInput | Input payload for discover project agent runtime. | source |
DurableHumanInputFlowResult | Result returned from durable human input flow. | source |
DurableRunSink | Transport-neutral durable run lifecycle sink for agent-service adoption work. | source |
EdgeConfig | Configuration used by edge. | source |
ExecuteAgUiDetachedStartInput | Input payload for execute AG-UI detached start. | source |
ExecuteDurableHumanInputFlowOptions | Options accepted by execute durable human input flow. | source |
ExecuteHostedChildForkRunContextStreamInput | Input payload for execute hosted child fork run context stream. | source |
ExecuteHostedChildForkStreamInput | Input payload for execute hosted child fork stream. | source |
ExecuteHostedChildForkToolInputOptions | Options accepted by execute hosted child fork tool input. | source |
ExecuteHostedChildForkWithPreparedToolsInput | Input payload for execute hosted child fork with prepared tools. | source |
ExecuteHostedDurableChatRunInput | Input payload for execute hosted durable chat run. | source |
ExecuteHostedDurableChildForkInput | Input payload for execute hosted durable child fork. | source |
ExecuteHostedLocalChildInvokeInput | Input payload for execute hosted local child invoke. | source |
ExternalAgentWorker | Public API contract for external agent worker. | source |
ExternalAgentWorkerClient | Public API contract for external agent worker client. | source |
ExternalAgentWorkerClientOptions | Options accepted by external agent worker client. | source |
ExternalAgentWorkerRequestSnapshot | Public API contract for external agent worker request snapshot. | source |
ExternalAgentWorkerRun | Public API contract for external agent worker run. | source |
ExternalAgentWorkerSession | Public API contract for external agent worker session. | source |
FetchDefaultHostedProjectSteeringInput | Input payload for fetch default hosted project steering. | source |
FinalizedMessageState | State for finalized message. | source |
FinalizeHostedChildForkRunContextResourcesInput | Input payload for finalize hosted child fork run context resources. | source |
FinalizeHostedDetachedOptions | Options accepted by finalize hosted detached. | source |
FinalizeHostedResponseOptions | Options accepted by finalize hosted response. | source |
ForkPart | Public API contract for fork part. | source |
ForkRecoveredPartsState | State for fork recovered parts. | source |
ForkRuntimeContinuationPromptResolver | Public API contract for fork runtime continuation prompt resolver. | source |
ForkRuntimeStep | Public API contract for fork runtime step. | source |
ForkRuntimeStepPreparer | Public API contract for fork runtime step preparer. | source |
ForkRuntimeStreamLogger | Public API contract for fork runtime stream logger. | source |
ForkRuntimeStreamMappingState | State for fork runtime stream mapping. | source |
ForkRuntimeStreamResult | Result returned from fork runtime stream. | source |
FormInputToolInput | Input payload for form input tool. | source |
FrameworkStreamState | State for framework stream. | source |
HandleHostedChildForkFailureInput | Input payload for handle hosted child fork failure. | source |
HandleHostedChildForkRunContextErrorInput | Input payload for handle hosted child fork run context error. | source |
HostedAgentProjectSteering | Public API contract for hosted agent project steering. | source |
HostedAgentProjectSteeringLogger | Public API contract for hosted agent project steering logger. | source |
HostedAgentProjectSteeringOptions | Options accepted by hosted agent project steering. | source |
HostedAgentProjectSteeringOptionsData | Public API contract for hosted agent project steering options data. | source |
HostedAgentRunSpan | Public API contract for hosted agent run span. | source |
HostedAgentRunSpanController | Public API contract for hosted agent run span controller. | source |
HostedAgentRunSpanFinalState | State for hosted agent run span final. | source |
HostedAgentRunTracer | Public API contract for hosted agent run tracer. | source |
HostedAgentServiceActiveSpanAttributes | Public API contract for hosted agent service active span attributes. | source |
HostedAgentServiceConfig | Configuration used by hosted agent service. | source |
HostedAgentServiceConfigInput | Input payload for hosted agent service config. | source |
HostedAgentServiceDetachedCleanupInput | Input payload for hosted agent service detached cleanup. | source |
HostedAgentServiceDetachedExecutionInput | Input payload for hosted agent service detached execution. | source |
HostedAgentServiceEnvFileLoadOptions | Options accepted by hosted agent service env file load. | source |
HostedAgentServiceEnvFileLoadResult | Result returned from hosted agent service env file load. | source |
HostedAgentServiceRouteSet | Public API contract for hosted agent service route set. | source |
HostedAgentServiceRouteSetOptions | Options accepted by hosted agent service route set. | source |
HostedAgentServiceRoutesLogger | Public API contract for hosted agent service routes logger. | source |
HostedAgentServiceRoutesTrace | Public API contract for hosted agent service routes trace. | source |
HostedAgentServiceRuntimeBundle | Public API contract for hosted agent service runtime bundle. | source |
HostedAgentServiceRuntimeConfig | Configuration used by hosted agent service runtime. | source |
HostedAgentServiceRuntimeLogger | Public API contract for hosted agent service runtime logger. | source |
HostedAgentServiceRuntimeTrace | Public API contract for hosted agent service runtime trace. | source |
HostedAgentServiceStreamExecutionInput | Input payload for hosted agent service stream execution. | source |
HostedAgUiChatForwardedConfig | Configuration used by hosted AG-UI chat forwarded. | source |
HostedChatExecutionLifecycleAdapter | Public API contract for hosted chat execution lifecycle adapter. | source |
HostedChatExecutionPreparationInput | Input payload for hosted chat execution preparation. | source |
HostedChatExecutionPreparationResult | Result returned from hosted chat execution preparation. | source |
HostedChatExecutionPreparationRootRunOptions | Options accepted by hosted chat execution preparation root run. | source |
HostedChatExecutionRootStreamWatchdog | Public API contract for hosted chat execution root stream watchdog. | source |
HostedChatExecutionRunContext | Context for hosted chat execution run. | source |
HostedChatExecutionRuntime | Public API contract for hosted chat execution runtime. | source |
HostedChatExecutionRuntimeBootstrap | Public API contract for hosted chat execution runtime bootstrap. | source |
HostedChatExecutionRuntimeLogger | Public API contract for hosted chat execution runtime logger. | source |
HostedChatProjectAccessError | Error shape for hosted chat project access. | source |
HostedChatProjectAccessResult | Result returned from hosted chat project access. | source |
HostedChatRequest | Request payload for hosted chat. | source |
HostedChatRequestInput | Input payload for hosted chat request. | source |
HostedChatRequestPrincipal | Public API contract for hosted chat request principal. | source |
HostedChatRuntimeAgent | Public API contract for hosted chat runtime agent. | source |
HostedChatRuntimeAgentAdapterInput | Input payload for hosted chat runtime agent adapter. | source |
HostedChatRuntimeAgentAdapterRunner | Public API contract for hosted chat runtime agent adapter runner. | source |
HostedChatRuntimeAgentAdapterWarning | Public API contract for hosted chat runtime agent adapter warning. | source |
HostedChatRuntimeAllowedToolNames | Public API contract for hosted chat runtime allowed tool names. | source |
HostedChatRuntimeCreationOptions | Options accepted by hosted chat runtime creation. | source |
HostedChatRuntimeCreationPreparationInput | Input payload for hosted chat runtime creation preparation. | source |
HostedChatRuntimeCreationPreparationResult | Result returned from hosted chat runtime creation preparation. | source |
HostedChatRuntimeCreationResult | Result returned from hosted chat runtime creation. | source |
HostedChatRuntimeFinishPart | Public API contract for hosted chat runtime finish part. | source |
HostedChatRuntimeInstructionsInput | Input payload for hosted chat runtime instructions. | source |
HostedChatRuntimeOnFinishEvent | Event emitted for hosted chat runtime on finish. | source |
HostedChatRuntimePreparationRootRunContext | Context for hosted chat runtime preparation root run. | source |
HostedChatRuntimePreparationSteering | Public API contract for hosted chat runtime preparation steering. | source |
HostedChatRuntimeProjectSteering | Public API contract for hosted chat runtime project steering. | source |
HostedChatRuntimeStreamInput | Input payload for hosted chat runtime stream. | source |
HostedChatRuntimeStreamResult | Result returned from hosted chat runtime stream. | source |
HostedChatRuntimeToolAssemblyContext | Context for hosted chat runtime tool assembly. | source |
HostedChatRuntimeToolAssemblyResult | Result returned from hosted chat runtime tool assembly. | source |
HostedChatRuntimeToUiMessageStreamOptions | Options accepted by hosted chat runtime to UI message stream. | source |
HostedChildChunkMirror | Public API contract for hosted child chunk mirror. | source |
HostedChildConversationBodyInput | Input payload for hosted child conversation body. | source |
HostedChildExecutionLifecycleOptions | Options accepted by hosted child execution lifecycle. | source |
HostedChildExecutionLifecycleResult | Result returned from hosted child execution lifecycle. | source |
HostedChildExecutionLogEntry | Entry shape for hosted child execution log. | source |
HostedChildExecutionLogLevel | Public API contract for hosted child execution log level. | source |
HostedChildExecutionLogWriter | Public API contract for hosted child execution log writer. | source |
HostedChildFileWriteFallbackLogger | Public API contract for hosted child file write fallback logger. | source |
HostedChildFileWriteFallbackTool | Public API contract for hosted child file write fallback tool. | source |
HostedChildFileWriteFallbackToolExecute | Public API contract for hosted child file write fallback tool execute. | source |
HostedChildForkExecutionInstrumentation | Public API contract for hosted child fork execution instrumentation. | source |
HostedChildForkInstructionsContext | Context for hosted child fork instructions. | source |
HostedChildForkPendingToolLifecycle | Public API contract for hosted child fork pending tool lifecycle. | source |
HostedChildForkRunContext | Context for hosted child fork run. | source |
HostedChildForkRunContextInput | Input payload for hosted child fork run context. | source |
HostedChildForkRuntimeConfig | Configuration used by hosted child fork runtime. | source |
HostedChildForkRuntimeStepMessages | Public API contract for hosted child fork runtime step messages. | source |
HostedChildForkRuntimeStepSystemResolver | Public API contract for hosted child fork runtime step system resolver. | source |
HostedChildForkRuntimeToolSelectionResult | Result returned from hosted child fork runtime tool selection. | source |
HostedChildForkStreamHandlingState | State for hosted child fork stream handling. | source |
HostedChildForkStreamLogger | Public API contract for hosted child fork stream logger. | source |
HostedChildForkStreamMirrorContext | Context for hosted child fork stream mirror. | source |
HostedChildForkStreamState | State for hosted child fork stream. | source |
HostedChildForkStreamTraceInput | Input payload for hosted child fork stream trace. | source |
HostedChildForkToolCallSnapshot | Public API contract for hosted child fork tool call snapshot. | source |
HostedChildForkToolInput | Input payload for hosted child fork tool. | source |
HostedChildForkToolResultSnapshot | Public API contract for hosted child fork tool result snapshot. | source |
HostedChildForkToolSourcesLogger | Public API contract for hosted child fork tool sources logger. | source |
HostedChildInvokeFailure | Public API contract for hosted child invoke failure. | source |
HostedChildLifecycleAdapter | Public API contract for hosted child lifecycle adapter. | source |
HostedChildLifecycleRunnerOptions | Options accepted by hosted child lifecycle runner. | source |
HostedChildLifecycleRunResult | Result returned from hosted child lifecycle run. | source |
HostedChildLifecycleTerminalState | State for hosted child lifecycle terminal. | source |
HostedChildMirrorContext | Context for hosted child mirror. | source |
HostedChildMirrorPart | Public API contract for hosted child mirror part. | source |
HostedChildMirrorState | State for hosted child mirror. | source |
HostedChildPendingToolCallPhase | Public API contract for hosted child pending tool call phase. | source |
HostedChildPendingToolCallState | State for hosted child pending tool call. | source |
HostedChildPendingToolLifecycleCloseLog | Public API contract for hosted child pending tool lifecycle close log. | source |
HostedChildPendingToolLifecycleCloseReason | Public API contract for hosted child pending tool lifecycle close reason. | source |
HostedChildPendingToolLifecycleInput | Input payload for hosted child pending tool lifecycle. | source |
HostedChildPendingToolLifecycleLogContext | Context for hosted child pending tool lifecycle log. | source |
HostedChildPendingToolLifecycleLogger | Public API contract for hosted child pending tool lifecycle logger. | source |
HostedChildPendingToolLifecycleLogWriter | Public API contract for hosted child pending tool lifecycle log writer. | source |
HostedChildPendingToolLifecycleUnknownToolLog | Public API contract for hosted child pending tool lifecycle unknown tool log. | source |
HostedChildProjectSwitchHandler | Handler for hosted child project switch. | source |
HostedChildRequestedToolsInput | Input payload for hosted child requested tools. | source |
HostedChildRunIdentifiers | Public API contract for hosted child run identifiers. | source |
HostedChildRunStatusMonitor | Public API contract for hosted child run status monitor. | source |
HostedChildSameTurnRetryBlockSignal | Public API contract for hosted child same turn retry block signal. | source |
HostedChildSteeringMutationHandler | Handler for hosted child steering mutation. | source |
HostedChildStreamWatchdogPhase | Public API contract for hosted child stream watchdog phase. | source |
HostedChildStreamWatchdogState | State for hosted child stream watchdog. | source |
HostedChildTerminalErrorCode | Public API contract for a code is a hosted child terminal error. | source |
HostedChildTerminalStatus | Public API contract for hosted child terminal status. | source |
HostedChildWrittenArtifactPathInput | Input payload for hosted child written artifact path. | source |
HostedConversationRootRunContext | Context for hosted conversation root run. | source |
HostedConversationRootRunState | State for hosted conversation root run. | source |
HostedConversationRunChunkMirrorInstrumentation | Public API contract for hosted conversation run chunk mirror instrumentation. | source |
HostedConversationRunChunkMirrorOptions | Options accepted by hosted conversation run chunk mirror. | source |
HostedConversationRunChunkMirrorTraceAttributes | Public API contract for hosted conversation run chunk mirror trace attributes. | source |
HostedDetachedFinalizationState | State for hosted detached finalization. | source |
HostedDurableChildBootstrapCallbacks | Public API contract for hosted durable child bootstrap callbacks. | source |
HostedDurableChildBootstrapContext | Context for hosted durable child bootstrap. | source |
HostedDurableChildExecutionOptions | Options accepted by hosted durable child execution. | source |
HostedDurableChildForkRunContext | Context for hosted durable child fork run. | source |
HostedDurableChildForkRunContextInput | Input payload for hosted durable child fork run context. | source |
HostedDurableChildInvokeResult | Result returned from hosted durable child invoke. | source |
HostedDurableChildInvokeTraceBase | Public API contract for hosted durable child invoke trace base. | source |
HostedDurableChildInvokeTraceInput | Input payload for hosted durable child invoke trace. | source |
HostedDurableChildInvokeTraceOverrides | Public API contract for hosted durable child invoke trace overrides. | source |
HostedDurableChildInvokeTraceRecorder | Public API contract for hosted durable child invoke trace recorder. | source |
HostedDurableChildRuntimeDependencies | Public API contract for hosted durable child runtime dependencies. | source |
HostedDurableChildSetupFailure | Public API contract for hosted durable child setup failure. | source |
HostedDurableChildSuccess | Public API contract for hosted durable child success. | source |
HostedDurableChildTerminalFailure | Public API contract for hosted durable child terminal failure. | source |
HostedDurableRunAccepted | Public API contract for hosted durable run accepted. | source |
HostedDurableRunAuthErrorResponse | Response payload for hosted durable run auth error. | source |
HostedDurableRunLogger | Public API contract for hosted durable run logger. | source |
HostedDurableRunSetupErrorStatusCode | Public API contract for hosted durable run setup error status code. | source |
HostedDurableRunStartCleanupInput | Input payload for hosted durable run start cleanup. | source |
HostedDurableRunStartExecutionInput | Input payload for hosted durable run start execution. | source |
HostedFormInputToolContext | Context for hosted form input tool. | source |
HostedLifecycleAdapter | Public API contract for hosted lifecycle adapter. | source |
HostedLifecycleExecution | Public API contract for hosted lifecycle execution. | source |
HostedLifecycleRunnerOptions | Options accepted by hosted lifecycle runner. | source |
HostedLifecycleRunResult | Result returned from hosted lifecycle run. | source |
HostedLifecycleTerminalState | State for hosted lifecycle terminal. | source |
HostedLocalChildInvokeTraceRecorder | Public API contract for hosted local child invoke trace recorder. | source |
HostedMirroredOpenToolCallLogger | Public API contract for hosted mirrored open tool call logger. | source |
HostedMirroredUiStreamLogger | Public API contract for hosted mirrored UI stream logger. | source |
HostedMirroredUiStreamWatchdog | Public API contract for hosted mirrored UI stream watchdog. | source |
HostedProjectRemoteToolSourceMutationHandler | Handler for hosted project remote tool source mutation. | source |
HostedProjectRemoteToolSourcePrepareToolInput | Input payload for hosted project remote tool source prepare tool. | source |
HostedProjectRemoteToolSourceProjectSwitchHandler | Handler for hosted project remote tool source project switch. | source |
HostedProjectRemoteToolSourceRetryPolicy | Public API contract for hosted project remote tool source retry policy. | source |
HostedProjectSkillIdsContext | Context for hosted project skill IDs. | source |
HostedProjectSteeringAdapter | Public API contract for hosted project steering adapter. | source |
HostedProjectSteeringAdapterOptions | Options accepted by hosted project steering adapter. | source |
HostedProjectSteeringLogger | Public API contract for hosted project steering logger. | source |
HostedResponseFinalizationState | State for hosted response finalization. | source |
HostedResponseStreamHeartbeat | Public API contract for hosted response stream heartbeat. | source |
HostedResponseStreamHeartbeatState | State for hosted response stream heartbeat. | source |
HostedResponseStreamWriter | Public API contract for hosted response stream writer. | source |
HostedRootRunLifecycleRuntimeAdapter | Public API contract for hosted root run lifecycle runtime adapter. | source |
HostedRuntimeRequestConfigAgent | Public API contract for hosted runtime request config agent. | source |
HostedRuntimeRequestConfigRequest | Request payload for hosted runtime request config. | source |
HostedRuntimeStateResolverContext | Context for hosted runtime state resolver. | source |
HostedRuntimeStateResolverInput | Input payload for hosted runtime state resolver. | source |
HostedRuntimeStateResolverResult | Result returned from hosted runtime state resolver. | source |
HostedRuntimeSystemRefresh | Public API contract for hosted runtime system refresh. | source |
HostedRuntimeSystemRefreshInput | Input payload for hosted runtime system refresh. | source |
HostedServiceAuth | Public API contract for hosted service auth. | source |
HostedServiceAuthConfig | Configuration used by hosted service auth. | source |
HostedServiceAuthenticatedRequest | Request payload for hosted service authenticated. | source |
HostedServiceAuthErrorCode | Public API contract for hosted service auth error code. | source |
HostedServiceAuthFetch | Public API contract for hosted service auth fetch. | source |
HostedServiceAuthLogger | Public API contract for hosted service auth logger. | source |
HostedServiceAuthOptions | Options accepted by hosted service auth. | source |
HostedServiceAuthTrace | Public API contract for hosted service auth trace. | source |
HostedServiceJwtError | Error shape for hosted service jwt. | source |
HostedServiceJwtResult | Result returned from hosted service jwt. | source |
HostedServiceProjectAccessError | Error shape for hosted service project access. | source |
HostedServiceProjectAccessResult | Result returned from hosted service project access. | source |
HostedStreamPartForUiChunkMapping | Public API contract for hosted stream part for UI chunk mapping. | source |
HostedStreamTerminalError | Error shape for hosted stream terminal. | source |
HostedTerminalError | Error shape for hosted terminal. | source |
HostedUiChunkMappingOptions | Options accepted by hosted UI chunk mapping. | source |
HumanInputField | Public API contract for human input field. | source |
HumanInputFieldInput | Input payload for human input field. | source |
HumanInputOption | Public API contract for human input option. | source |
HumanInputPendingRequest | Request payload for human input pending. | source |
HumanInputRequest | Request payload for human input. | source |
HumanInputRequestInput | Input payload for human input request. | source |
HumanInputResult | Result returned from human input. | source |
HumanInputResumeValue | Public API contract for human input resume value. | source |
InitializeNodeAgentServiceTelemetryOptions | Options accepted by initialize node agent service telemetry. | source |
InitializeNodeHostedAgentServiceTelemetryOptions | Options accepted by initialize node hosted agent service telemetry. | source |
InputRequestOutput | Output from input request. | source |
InstallAbortRejectionGuardOptions | Options accepted by install abort rejection guard. | source |
InstalledAbortRejectionGuard | Public API contract for installed abort rejection guard. | source |
InvokeAgentChildRunLifecycleCustomEvent | Event emitted for invoke agent child run lifecycle custom. | source |
InvokeAgentChildRunLifecycleValue | Public API contract for invoke agent child run lifecycle value. | source |
InvokeAgentChildRunProgressEvent | Event emitted for invoke agent child run progress. | source |
InvokeAgentChildRunProgressInput | Input payload for invoke agent child run progress. | source |
InvokeAgentChildRunStateDelta | Public API contract for invoke agent child run state delta. | source |
LiveStudioMcpToolsOptions | Options accepted by live studio MCP tools. | source |
LoadRuntimeAgentMarkdownDefinitionFromFileInput | Input payload for load runtime agent markdown definition from file. | source |
Memory | Public API contract for memory. | source |
MemoryConfig | Configuration used by memory. | source |
MemoryPersistence | Public API contract for memory persistence. | source |
MemoryStats | Public API contract for memory stats. | source |
MessagePart | Public API contract for message part. | source |
MirroredToolChunkState | State for mirrored tool chunk. | source |
ModelProvider | Public API contract for model provider. | source |
ModelString | Model configuration string format: “provider/model-name” Examples: “openai/gpt-4”, “anthropic/claude-3-5-sonnet” | source |
ModelTransportRequest | Request payload for model transport. | source |
ModelTransportResolver | Public API contract for model transport resolver. | source |
MonitorHostedChildRunStatusInput | Input payload for monitor hosted child run status. | source |
MutableAgentProjectContext | Context for mutable agent project. | source |
NodeAgentServiceInstrumentationConfig | Configuration used by node agent service instrumentation. | source |
NodeAgentServiceRuntimeInfrastructure | Public API contract for node agent service runtime infrastructure. | source |
NodeAgentServiceServer | Public API contract for node agent service server. | source |
NodeAgentServiceTelemetryConfig | Configuration used by node agent service telemetry. | source |
NodeAgentServiceTelemetryEnv | Public API contract for node agent service telemetry env. | source |
NodeAgentServiceTelemetryLogger | Public API contract for node agent service telemetry logger. | source |
NodeAgentServiceTelemetryProcessTarget | Public API contract for node agent service telemetry process target. | source |
NodeHostedAgentServiceInstrumentationConfig | Configuration used by node hosted agent service instrumentation. | source |
NodeHostedAgentServiceRuntimeInfrastructure | Public API contract for node hosted agent service runtime infrastructure. | source |
NodeHostedAgentServiceTelemetryConfig | Configuration used by node hosted agent service telemetry. | source |
NodeHostedAgentServiceTelemetryEnv | Public API contract for node hosted agent service telemetry env. | source |
NodeHostedAgentServiceTelemetryLogger | Public API contract for node hosted agent service telemetry logger. | source |
NodeHostedAgentServiceTelemetryProcessTarget | Public API contract for node hosted agent service telemetry process target. | source |
NodeVeryfrontCloudAgentServiceMcpServer | Public API contract for node Veryfront Cloud agent service MCP server. | source |
NodeVeryfrontCloudAgentServiceOptions | Options accepted by node Veryfront Cloud agent service. | source |
NodeVeryfrontCloudAgentServicePreparedExecution | Public API contract for node Veryfront Cloud agent service prepared execution. | source |
NodeVeryfrontCloudAgentServiceProcessTarget | Public API contract for node Veryfront Cloud agent service process target. | source |
NormalizedAgentServiceContract | Public API contract for normalized agent service contract. | source |
NormalizedHostedChatRequest | Request payload for normalized hosted chat. | source |
OpenToolCalls | Public API contract for open tool calls. | source |
ParseAgUiSseResponseOptions | Options for parseAgUiSseResponse(). | source |
ParsedAgUiSseRun | Parsed AG-UI SSE response summary for evals, canaries, and host tests. | source |
ParsedHostedAgUiRequest | Request payload for parsed hosted AG-UI. | source |
ParsedHostedChatRequest | Request payload for parsed hosted chat. | source |
ParsedRuntimeSkillDocument | Public API contract for parsed runtime skill document. | source |
ParseHostedChatRequestOptions | Options accepted by parse hosted chat request. | source |
ParseRuntimeAgentMarkdownDefinitionInput | Input payload for parse runtime agent markdown definition. | source |
PersistConversationUserMessageFailure | Public API contract for persist conversation user message failure. | source |
PrepareAgentRuntimeMessagesFromUiMessagesOptions | Options accepted by prepare agent runtime messages from UI messages. | source |
PrepareConversationRootRunLifecycleOptions | Options accepted by prepare conversation root run lifecycle. | source |
PrepareDefaultHostedChildForkSandboxToolSourcesInput | Input payload for prepare default hosted child fork sandbox tool sources. | source |
PrepareDefaultHostedChildForkToolSourcesInput | Input payload for prepare default hosted child fork tool sources. | source |
PreparedHostedChatExecution | Public API contract for prepared hosted chat execution. | source |
PreparedHostedChatExecutionDetachedInput | Input payload for prepared hosted chat execution detached. | source |
PreparedHostedChatExecutionRuntimeOptions | Options accepted by prepared hosted chat execution runtime. | source |
PreparedHostedChatExecutionStreamInput | Input payload for prepared hosted chat execution stream. | source |
PrepareHostedChatRuntimeMessagesOptions | Options accepted by prepare hosted chat runtime messages. | source |
PrepareHostedChatRuntimeToolAssemblyInput | Input payload for prepare hosted chat runtime tool assembly. | source |
PrepareHostedChildForkRuntimeStepMessagesInput | Input payload for prepare hosted child fork runtime step messages. | source |
PrepareHostedConversationRootRunContextInput | Input payload for prepare hosted conversation root run context. | source |
PrepareVeryfrontCloudHostedChatExecutionInput | Input payload for prepare Veryfront Cloud hosted chat execution. | source |
ProjectAgentRuntimeAgentIdCandidates | Public API contract for project agent runtime agent ID candidates. | source |
ProjectAgentRuntimeAgentSource | Public API contract for project agent runtime agent source. | source |
ProjectSteeringMutationInput | Input payload for project steering mutation. | source |
ProjectSteeringMutationResult | Result returned from project steering mutation. | source |
ProjectSteeringPaths | Public API contract for project steering paths. | source |
ProviderNativeToolInventoryOptions | Options accepted by provider native tool inventory. | source |
ProviderToolCompatOptions | Options accepted by provider tool compat. | source |
ProviderToolCompatProvider | Public API contract for provider tool compat provider. | source |
ProviderToolProfile | Public API contract for provider tool profile. | source |
RecordExternalAgentWorkerSessionInput | Input payload for record external agent worker session. | source |
RedisClient | Redis client interface (compatible with ioredis and node-redis) | source |
RedisMemoryConfig | Redis memory configuration | source |
RegisterAgentPushRuntimeServiceRequest | Request payload for register agent push runtime service. | source |
RegisterExternalAgentWorkerInput | Input payload for register external agent worker. | source |
RequestAuthCache | Public API contract for request auth cache. | source |
ResolveAgentServiceRegistrationInputOptions | Options accepted by resolve agent service registration input. | source |
ResolveConversationHostedTerminalStateInput | Input payload for resolve conversation hosted terminal state. | source |
ResolvedAgentConfig | Configuration used by resolved agent. | source |
ResolvedAgentServiceRegistrationInput | Input payload for resolved agent service registration. | source |
ResolvedHostedRuntimeRequestConfig | Configuration used by resolved hosted runtime request. | source |
ResolvedModelTransport | Public API contract for resolved model transport. | source |
ResolvedRuntimeState | State for resolved runtime. | source |
ResolveHostedChildForkRuntimeConfigInput | Input payload for resolve hosted child fork runtime config. | source |
ResolveHostedRuntimeRequestConfigInput | Input payload for resolve hosted runtime request config. | source |
ResolveNodeAgentServiceTelemetryConfigOptions | Options accepted by resolve node agent service telemetry config. | source |
ResolveNodeHostedAgentServiceTelemetryConfigOptions | Options accepted by resolve node hosted agent service telemetry config. | source |
ResolveRuntimeAgentDefinitionsDirInput | Input payload for resolve runtime agent definitions dir. | source |
RootOwnedChildResultHint | Public API contract for root owned child result hint. | source |
RootOwnedChildResultHinted | Public API contract for root owned child result hinted. | source |
RunAgentRuntimeForkStepInput | Input payload for run agent runtime fork step. | source |
RunAgentServiceMainOptions | Options accepted by run agent service main. | source |
RunFrameworkForkStepInput | Input payload for run framework fork step. | source |
RunResumeSessionManagerOptions | Options accepted by run resume session manager. | source |
RunSessionStatus | Public API contract for run session status. | source |
RuntimeAgentContextItem | Public API contract for runtime agent context item. | source |
RuntimeAgentControlPlaneStreamRequest | Request payload for runtime agent control plane stream. | source |
RuntimeAgentMarkdownDefinition | Definition for runtime agent markdown. | source |
RuntimeAgentProjectContext | Context for runtime agent project. | source |
RuntimeAgentRunContext | Context for runtime agent run. | source |
RuntimeAgentRunInvocation | Public API contract for runtime agent run invocation. | source |
RuntimeAgentSourceContext | Context for runtime agent source. | source |
RuntimeAgentTargetKind | Public API contract for runtime agent target kind. | source |
RuntimeAgentThinkingConfig | Configuration used by runtime agent thinking. | source |
RuntimeAgentTool | Public API contract for runtime agent tool. | source |
RuntimeAgentValidatedClaims | Public API contract for runtime agent validated claims. | source |
RuntimeBuiltinSkillEntriesResult | Result returned from runtime builtin skill entries. | source |
RuntimeClientCapability | Public API contract for runtime client capability. | source |
RuntimeClientProfile | Public API contract for runtime client profile. | source |
RuntimeClientType | Public API contract for runtime client type. | source |
RuntimeFileUrlResolver | Public API contract for runtime file URL resolver. | source |
RuntimeFileUrlResolverInput | Input payload for runtime file URL resolver. | source |
RuntimeGetProjectFileOptions | Options accepted by runtime get project file. | source |
RuntimeLoadedProjectSkill | Public API contract for runtime loaded project skill. | source |
RuntimeLoadedSkillResponse | Response payload for runtime loaded skill. | source |
RuntimeLoadedSkillResponseMessages | Public API contract for runtime loaded skill response messages. | source |
RuntimeLoadSkillBuiltinStore | Public API contract for runtime load skill builtin store. | source |
RuntimeLoadSkillErrorOutput | Output from runtime load skill error. | source |
RuntimeLoadSkillReferenceFileOutput | Output from runtime load skill reference file. | source |
RuntimeLoadSkillToolContext | Context for runtime load skill tool. | source |
RuntimeLoadSkillToolInput | Input payload for runtime load skill tool. | source |
RuntimeLoadSkillToolMessages | Public API contract for runtime load skill tool messages. | source |
RuntimeLoadSkillToolOptions | Options accepted by runtime load skill tool. | source |
RuntimeLoadSkillToolOutput | Output from runtime load skill tool. | source |
RuntimeProjectFile | Public API contract for runtime project file. | source |
RuntimeProjectFileListItem | Public API contract for runtime project file list item. | source |
RuntimeProjectFilesApiOptions | Options accepted by runtime project files API. | source |
RuntimeProjectFilesClient | Public API contract for runtime project files client. | source |
RuntimeProjectFilesClientOptions | Options accepted by runtime project files client. | source |
RuntimeProjectFilesFetch | Public API contract for runtime project files fetch. | source |
RuntimeProjectFilesTrace | Public API contract for runtime project files trace. | source |
RuntimeProjectInstructionsOptions | Options accepted by runtime project instructions. | source |
RuntimeProjectSkillCatalogOptions | Options accepted by runtime project skill catalog. | source |
RuntimeProjectSkillContext | Context for runtime project skill. | source |
RuntimeProjectSkillLoader | Public API contract for runtime project skill loader. | source |
RuntimeProjectSkillLoaderLogger | Public API contract for runtime project skill loader logger. | source |
RuntimeProjectSkillLoaderOptions | Options accepted by runtime project skill loader. | source |
RuntimeProjectSteeringLookup | Public API contract for runtime project steering lookup. | source |
RuntimePromptBlockOptions | Options accepted by runtime prompt block. | source |
RuntimeSkillDefinition | Definition for runtime skill. | source |
RuntimeSkillFrontmatter | Public API contract for runtime skill frontmatter. | source |
RuntimeSkillMetadataLogger | Public API contract for runtime skill metadata logger. | source |
RuntimeStateRequest | Request payload for runtime state. | source |
RuntimeStateResolver | Public API contract for runtime state resolver. | source |
RuntimeUploadUrlClientOptions | Options accepted by runtime upload URL client. | source |
RuntimeUploadUrlFetch | Public API contract for runtime upload URL fetch. | source |
RuntimeUploadUrlOptions | Options accepted by runtime upload URL. | source |
SlashCommandArtifactPolicy | Public API contract for slash command artifact policy. | source |
SlashCommandArtifactPolicyInput | Input payload for slash command artifact policy. | source |
StartAgentRuntimeForkInput | Input payload for start agent runtime fork. | source |
StartAgentRuntimeForkWithHostToolsInput | Input payload for start agent runtime fork with host tools. | source |
StartAgentServiceRuntimeOptions | Options accepted by start agent service runtime. | source |
StartAgentServiceRuntimeResult | Result returned from start agent service runtime. | source |
StartAgentServiceServerOptions | Options accepted by start agent service server. | source |
StartedHostedChildForkRuntime | Public API contract for started hosted child fork runtime. | source |
StartHostedChildForkRuntimeWithHostToolsInput | Input payload for start hosted child fork runtime with host tools. | source |
StartNodeAgentServiceOptions | Options accepted by start node agent service. | source |
StartNodeAgentServiceResult | Result returned from start node agent service. | source |
StartNodeAgentServiceServerOptions | Options accepted by start node agent service server. | source |
StartNodeHostedAgentServiceOptions | Options accepted by start node hosted agent service. | source |
StartNodeHostedAgentServiceResult | Result returned from start node hosted agent service. | source |
StreamToolCall | Public API contract for stream tool call. | source |
SubmitResumeValueOutcome | Public API contract for submit resume value outcome. | source |
Suggestion | Public API contract for suggestion. | source |
Suggestions | Public API contract for suggestions. | source |
TerminalConversationRunStatus | Public API contract for terminal conversation run status. | source |
ToolCall | Public API contract for tool call. | source |
ToolCallPart | Agent message part for a tool call. | source |
ToolCallPartWithArgs | Tool-call message part that stores arguments. | source |
ToolCallPartWithInput | Tool-call message part that stores input. | source |
ToolExecutionDataEventBridgeStreamInput | Input payload for tool execution data event bridge stream. | source |
ToolExecutionDataEventPublisher | Public API contract for tool execution data event publisher. | source |
ToolResultPart | Agent message part for a tool result. | source |
VeryfrontCloudAgentServiceOptions | Options accepted by Veryfront Cloud agent service. | source |
VeryfrontCloudHostedChatExecutionPreparationLogger | Public API contract for Veryfront Cloud hosted chat execution preparation logger. | source |
VeryfrontMcpServerKind | Public API contract for veryfront MCP server kind. | source |
WaitForDurableHumanInputResolutionOptions | Options accepted by wait for durable human input resolution. | source |
WaitForHumanInputOptions | Options accepted by wait for human input. | source |
WorkflowConfig | Configuration used by workflow. | source |
WorkflowResult | Result returned from workflow. | source |
WorkflowStep | Public API contract for workflow step. | source |
WrapHostedChildProjectSwitchToolInput | Input payload for wrap hosted child project switch tool. | source |
WrapHostedChildSteeringMutationToolInput | Input payload for wrap hosted child steering mutation tool. | source |
Constants
| Name | Description | Source |
|---|---|---|
agentServiceConfigSchema | Zod schema for agent service config. | source |
agentServiceRegistrationConfigSchema | Zod schema for agent service registration config. | source |
agUiSseEventTypes | AG-UI runtime event type constants normalized from browser-wire SSE events. | source |
conversationRunEventTypes | Shared conversation run event types value. | source |
createNodeHostedAgentServiceRuntimeInfrastructure | Create node hosted agent service runtime infrastructure. | source |
defaultHostedInvokeAgentInputSchema | Schema for default hosted invoke agent input. | source |
defaultHostedInvokeAgentSelectionSchema | Schema for default hosted invoke agent selection. | source |
getAgUiRuntimeContextItemSchema | Zod schema for get AG-UI runtime context item. | source |
getAgUiRuntimeInjectedToolSchema | Zod schema for get AG-UI runtime injected tool. | source |
getAgUiRuntimeMessageSchema | Zod schema for get AG-UI runtime message. | source |
getAgUiRuntimeRequestSchema | Zod schema for get AG-UI runtime request. | source |
getCreateInputRequestRequestSchema | Zod schema for get create input request request. | source |
getCreateInputRequestResponseSchema | Zod schema for get create input request response. | source |
getFormInputToolInputSchema | Zod schema for get form input tool input. | source |
getGetInputRequestResponseSchema | Zod schema for get get input request response. | source |
getHumanInputFieldSchema | Zod schema for get human input field. | source |
getHumanInputOptionSchema | Zod schema for get human input option. | source |
getHumanInputPendingRequestSchema | Zod schema for get human input pending request. | source |
getHumanInputRequestSchema | Zod schema for get human input request. | source |
getHumanInputResultSchema | Zod schema for get human input result. | source |
getInputRequestLifecycleDataEventSchema | Zod schema for get input request lifecycle data event. | source |
getInputRequestOutputSchema | Zod schema for get input request output. | source |
getInputRequestRestSchema | Zod schema for get input request rest. | source |
getInputResponseRestSchema | Zod schema for get input response rest. | source |
getInputResponseValuesSchema | Zod schema for get input response values. | source |
getParseRuntimeAgentMarkdownDefinitionInputSchema | Zod schema for get parse runtime agent markdown definition input. | source |
getRuntimeAgentMarkdownDefinitionSchema | Zod schema for get runtime agent markdown definition. | source |
getRuntimeAgentThinkingConfigSchema | Zod schema for get runtime agent thinking config. | source |
getRuntimeClientCapabilitySchema | Zod schema for get runtime client capability. | source |
getRuntimeClientProfileSchema | Zod schema for get runtime client profile. | source |
getRuntimeClientTypeSchema | Zod schema for get runtime client type. | source |
hostedAgentProjectSteeringOptionsSchema | Zod schema for hosted agent project steering options. | source |
hostedAgentServiceConfigSchema | Zod schema for hosted agent service config. | source |
hostedAgUiChatForwardedConfigSchema | Schema for agent service AG-UI chat forwarded config. Schema for hosted AG-UI chat forwarded config. | source |
hostedChatRequestSchema | Schema for hosted chat request. | source |
hostedChatRuntimeOverridesSchema | Schema for hosted chat runtime overrides. | source |
hostedChildForkToolInputSchema | Schema for hosted child fork tool input. | source |
hostedChildTerminalErrorCodes | Shared hosted child terminal error codes value. | source |
hostedDurableRootRunDescriptorSchema | Schema for hosted durable root run descriptor. | source |
loadHostedAgentServiceEnvFiles | Loads hosted agent service env files. | source |
loadRuntimeAgentMarkdownDefinitionFromFileInputSchema | Zod schema for load runtime agent markdown definition from file input. | source |
parseRuntimeAgentMarkdownDefinitionInputSchema | Schema for parse runtime agent markdown definition input. | source |
resolvedAgentServiceRegistrationInputSchema | Zod schema for resolved agent service registration input. | source |
resolveRuntimeAgentDefinitionsDirInputSchema | Zod schema for resolve runtime agent definitions dir input. | source |
runtimeAgentMarkdownDefinitionSchema | Schema for runtime agent markdown definition. | source |
runtimeAgentThinkingConfigSchema | Schema for runtime agent thinking config. | source |
runtimeClientCapabilitySchema | Schema for runtime client capability. | source |
runtimeClientProfileSchema | Schema for runtime client profile. | source |
runtimeClientTypeSchema | Schema for runtime client type. | source |
runtimeProjectFileListItemSchema | Schema for runtime project file list item. | source |
runtimeProjectFileSchema | Schema for runtime project file. | source |
Deep imports
These import paths group focused functionality under this module. Each is a separate barrel; import only what you need.veryfront/agent/conversation-bootstrap
Components
Functions
| Name | Description | Source |
|---|---|---|
bootstrapConversationAgentRun | Bootstrap conversation agent run helper. | source |
createConversationMessage | Message shape for create conversation. | source |
createConversationRecord | Record shape for create conversation. | source |
ensureConversationProjectLink | Ensure conversation project link helper. | source |
fetchConversationRecord | Record shape for fetch conversation. | source |
findLatestUserConversationMessageContext | Context for find latest user conversation message. | source |
persistConversationUserMessage | Message shape for persist conversation user. | source |
persistLatestConversationUserMessage | Message shape for persist latest conversation user. | source |
Types
| Name | Description | Source |
|---|---|---|
BootstrapConversationAgentRunResult | Result returned from bootstrap conversation agent run. | source |
ConversationControlPlaneResponseError | Error shape for conversation control plane response. | source |
ConversationMessageRecord | Record shape for conversation message. | source |
ConversationRecord | Record shape for conversation. | source |
PersistConversationUserMessageFailure | Public API contract for persist conversation user message failure. | source |
Constants
veryfront/agent/durable
Components
| Name | Description | Source |
|---|---|---|
AppendConversationRunEventsResponseSchema | Schema for append conversation run events response. | source |
CompleteConversationRunResponseSchema | Schema for complete conversation run response. | source |
ConversationRunProjectionSchema | Schema for conversation run projection. | source |
ConversationRunStatusSchema | Schema for conversation run status. | source |
ConversationRunTargetsSchema | Schema for conversation run targets. | source |
CreateConversationRunAcceptedSchema | Schema for create conversation run accepted. | source |
Functions
| Name | Description | Source |
|---|---|---|
appendConversationRunEvents | Append conversation run events. | source |
createConversationAgentRun | Create conversation agent run. | source |
createConversationRunEventQueueController | Create conversation run event queue controller. | source |
finalizeConversationAgentRun | Finalize conversation agent run helper. | source |
flushConversationRunEventBatches | Flush conversation run event batches. | source |
flushConversationRunEventQueue | Flush conversation run event queue. | source |
getConversationRun | Return conversation run. | source |
isActiveConversationRunStatus | Check whether a conversation run status is active. | source |
isAppendableConversationRunProjection | Check whether a conversation run projection can accept more events. | source |
isCursorMismatchConversationRunAppendError | Error shape for is cursor mismatch conversation run append. | source |
isIgnorableConversationRunAppendError | Error shape for is ignorable conversation run append. | source |
monitorConversationRunStatus | Monitor conversation run status helper. | source |
parseAppendConversationRunEventsErrorBody | Parses append conversation run events error body. | source |
recoverConversationRunAppendExecution | Recover conversation run append execution helper. | source |
recoverConversationRunAppendFailure | Recover conversation run append failure helper. | source |
recoverConversationRunCursorMismatch | Recover conversation run cursor mismatch helper. | source |
resolveConversationRunTargets | Resolves conversation run targets. | source |
resyncConversationRunAppendCursor | Resync conversation run append cursor helper. | source |
Classes
Types
| Name | Description | Source |
|---|---|---|
ActiveConversationRunStatus | Public API contract for a conversation run status is active. | source |
AppendConversationRunEventsResponse | Response payload for append conversation run events. | source |
ConversationAgentRunUsage | Public API contract for conversation agent run usage. | source |
ConversationRunAppendCursorResyncResult | Result returned from conversation run append cursor resync. | source |
ConversationRunAppendExecutionOutcome | Public API contract for conversation run append execution outcome. | source |
ConversationRunAppendFailureOutcome | Public API contract for conversation run append failure outcome. | source |
ConversationRunAppendRecoveryOutcome | Public API contract for conversation run append recovery outcome. | source |
ConversationRunBatchFlushOutcome | Public API contract for conversation run batch flush outcome. | source |
ConversationRunEventQueueController | Public API contract for conversation run event queue controller. | source |
ConversationRunProjection | Public API contract for conversation run projection. | source |
ConversationRunQueueFlushOutcome | Public API contract for conversation run queue flush outcome. | source |
ConversationRunTargets | Public API contract for conversation run targets. | source |
CreateConversationAgentRunInput | Input payload for create conversation agent run. | source |
FinalizeConversationAgentRunInput | Input payload for finalize conversation agent run. | source |
TerminalConversationRunStatus | Public API contract for terminal conversation run status. | source |
Constants
| Name | Description | Source |
|---|---|---|
getAppendConversationRunEventsResponseSchema | Zod schema for get append conversation run events response. | source |
getCompleteConversationRunResponseSchema | Zod schema for get complete conversation run response. | source |
getConversationRunProjectionSchema | Zod schema for get conversation run projection. | source |
getConversationRunStatusSchema | Zod schema for get conversation run status. | source |
getConversationRunTargetsSchema | Zod schema for get conversation run targets. | source |
getCreateConversationRunAcceptedSchema | Zod schema for get create conversation run accepted. | source |
veryfront/agent/invoke-agent-child-runs
Components
| Name | Description | Source |
|---|---|---|
InvokeAgentChildRunLifecycleCustomEventSchema | Schema for invoke agent child run lifecycle custom event. | source |
InvokeAgentChildRunLifecycleValueSchema | Schema for invoke agent child run lifecycle value. | source |
InvokeAgentChildRunStateDeltaSchema | Schema for invoke agent child run state delta. | source |
Functions
| Name | Description | Source |
|---|---|---|
buildInvokeAgentChildRunLifecycleCustomEvent | Event emitted for build invoke agent child run lifecycle custom. | source |
buildInvokeAgentChildRunProgressEvents | Builds invoke agent child run progress events. | source |
buildInvokeAgentChildRunStateDelta | Builds invoke agent child run state delta. | source |
publishInvokeAgentChildRunProgress | Publish invoke agent child run progress helper. | source |
Types
| Name | Description | Source |
|---|---|---|
InvokeAgentChildRunLifecycleCustomEvent | Event emitted for invoke agent child run lifecycle custom. | source |
InvokeAgentChildRunLifecycleValue | Public API contract for invoke agent child run lifecycle value. | source |
InvokeAgentChildRunProgressEvent | Event emitted for invoke agent child run progress. | source |
InvokeAgentChildRunProgressInput | Input payload for invoke agent child run progress. | source |
InvokeAgentChildRunStateDelta | Public API contract for invoke agent child run state delta. | source |
Constants
| Name | Description | Source |
|---|---|---|
getInvokeAgentChildRunLifecycleCustomEventSchema | Zod schema for get invoke agent child run lifecycle custom event. | source |
getInvokeAgentChildRunLifecycleValueSchema | Zod schema for get invoke agent child run lifecycle value. | source |
getInvokeAgentChildRunStateDeltaSchema | Zod schema for get invoke agent child run state delta. | source |
veryfront/agent/request-auth-cache
Functions
| Name | Description | Source |
|---|---|---|
createRequestAuthCache | Create request auth cache. | source |
Types
veryfront/agent/testing
Agent Testing Utilities
Components
| Name | Description | Source |
|---|---|---|
DEFAULT_DURABLE_RUN_CANARY_TIMEOUT_MS | Default value for durable run canary timeout ms. | source |
DEFAULT_LIVE_EVAL_AREA_TAG_RULES | Default value for live eval area tag rules. | source |
DEFAULT_LIVE_EVAL_ENDPOINT | Default value for live eval endpoint. | source |
DEFAULT_LIVE_EVAL_OPTIONAL_JUDGE_CASE_PREFIXES | Default value for live eval optional judge case prefixes. | source |
Functions
| Name | Description | Source |
|---|---|---|
assertCompleted | Assert completed helper. | source |
assertContains | Assert contains helper. | source |
assertDurableRunCanaryCompleted | Assert that a durable run canary completed successfully. | source |
assertNoMalformedCreateFileToolCalls | Assert no malformed create file tool calls helper. | source |
assertToolCalled | Assert tool called helper. | source |
buildFailureSuffix | Builds failure suffix. | source |
buildLiveEvalCaseMetadata | Builds live eval case metadata. | source |
buildLiveEvalCaseTagSummary | Builds live eval case tag summary. | source |
buildLiveEvalRequestBody | Builds live eval request body. | source |
buildLiveEvalRuntimeSummary | Builds live eval runtime summary. | source |
buildLiveEvalStatusSummary | Builds live eval status summary. | source |
buildProgressLine | Builds progress line. | source |
buildRuntimePerformanceSummary | Builds runtime performance summary. | source |
cancelLiveEvalInputRequest | Request payload for cancel live eval input. | source |
collectAssistantText | Collect assistant text helper. | source |
containsOrderedSubsequence | Contains ordered subsequence helper. | source |
containsSkillLoad | Contains skill load helper. | source |
countStepStartedEvents | Count step started events helper. | source |
createDurableRunCanaryApiClient | Create durable run canary API client. | source |
createDurableRunCanaryRunner | Create durable run canary runner. | source |
createFailedEvalResult | Result returned from create failed eval. | source |
createLiveEvalApiClient | Create live eval API client. | source |
createLiveEvalCaseSupport | Create live eval case support. | source |
createLiveEvalConversation | Create live eval conversation. | source |
createLiveEvalProjectUploadFixture | Create live eval project upload fixture. | source |
createLiveEvalRelease | Create live eval release. | source |
createPassedEvalResult | Result returned from create passed eval. | source |
createPlainTextPdf | Create plain text pdf. | source |
createSkippedEvalResult | Result returned from create skipped eval. | source |
deleteLiveEvalConversation | Delete live eval conversation helper. | source |
deleteLiveEvalProjectFile | Delete live eval project file helper. | source |
evaluateRuntimeConfidenceEnv | Evaluate runtime confidence env helper. | source |
findAssistantMessage | Message shape for find assistant. | source |
getLiveEvalProjectFile | Return live eval project file. | source |
hasEveryLiveEvalTag | Check whether every live eval tag is present. | source |
hasFinished | Check whether finished is present. | source |
listOpenLiveEvalInputRequests | List open live eval input requests. | source |
parseDurableRunCanaryRunSummary | Parses durable run canary run summary. | source |
printRuntimeConfidencePreflight | Print runtime confidence preflight helper. | source |
printTestResults | Print test results helper. | source |
resolveDurableRunCanaryEnvironment | Resolves durable run canary environment. | source |
resolveLiveEvalEnvironment | Resolves live eval environment. | source |
resolveLiveEvalRequestedCaseIds | Resolves live eval requested case IDs. | source |
runDurableRunCanaryCli | Run durable run canary cli. | source |
runLiveEvalCli | Run live eval cli. | source |
selectLiveEvalCases | Select live eval cases helper. | source |
stringifyUnknown | Stringify unknown helper. | source |
submitLiveEvalInputResponse | Response payload for submit live eval input. | source |
testAgent | Test agent helper. | source |
waitForOpenLiveEvalInputRequest | Request payload for wait for open live eval input. | source |
withLiveEvalMetadata | Applies live eval metadata. | source |
Types
| Name | Description | Source |
|---|---|---|
BuildLiveEvalCaseMetadataInput | Input payload for build live eval case metadata. | source |
BuildLiveEvalRequestBodyInput | Input payload for build live eval request body. | source |
DurableRunCanaryApiClient | Public API contract for durable run canary API client. | source |
DurableRunCanaryApiConfig | Configuration used by durable run canary API. | source |
DurableRunCanaryCase | Public API contract for durable run canary case. | source |
DurableRunCanaryCliCaseFactoryInput | Input payload for durable run canary cli case factory. | source |
DurableRunCanaryCreateRootRunInput | Input payload for durable run canary create root run. | source |
DurableRunCanaryEnvironment | Public API contract for durable run canary environment. | source |
DurableRunCanaryMessage | Message shape for durable run canary. | source |
DurableRunCanaryPreparedCase | Public API contract for durable run canary prepared case. | source |
DurableRunCanaryResult | Result returned from durable run canary. | source |
DurableRunCanaryRunnerConfig | Configuration used by durable run canary runner. | source |
DurableRunCanaryRunSummary | Public API contract for durable run canary run summary. | source |
DurableRunCanarySendUserMessageInput | Input payload for durable run canary send user message. | source |
DurableRunCanaryStartRunInput | Input payload for durable run canary start run. | source |
LiveEvalApiClient | Public API contract for live eval API client. | source |
LiveEvalApiContext | Context for live eval API. | source |
LiveEvalCase | Public API contract for live eval case. | source |
LiveEvalCaseMetadata | Public API contract for live eval case metadata. | source |
LiveEvalCaseMetadataOptions | Options accepted by live eval case metadata. | source |
LiveEvalCaseSelectionInput | Input payload for live eval case selection. | source |
LiveEvalCaseSurface | Public API contract for live eval case surface. | source |
LiveEvalCaseTagRule | Public API contract for live eval case tag rule. | source |
LiveEvalCliCaseFactoryInput | Input payload for live eval cli case factory. | source |
LiveEvalCliCaseGroups | Public API contract for live eval cli case groups. | source |
LiveEvalContext | Context for live eval. | source |
LiveEvalConversationInput | Input payload for live eval conversation. | source |
LiveEvalCreateConversationInput | Input payload for live eval create conversation. | source |
LiveEvalCreateReleaseInput | Input payload for live eval create release. | source |
LiveEvalEnvironment | Public API contract for live eval environment. | source |
LiveEvalInputRequestInput | Input payload for live eval input request. | source |
LiveEvalInputRequestRecord | Record shape for live eval input request. | source |
LiveEvalInputResponseValues | Public API contract for live eval input response values. | source |
LiveEvalProjectFile | Public API contract for live eval project file. | source |
LiveEvalProjectFileInput | Input payload for live eval project file. | source |
LiveEvalProjectFileReaderInput | Input payload for live eval project file reader. | source |
LiveEvalProjectUploadFixtureInput | Input payload for live eval project upload fixture. | source |
LiveEvalRequestBody | Public API contract for live eval request body. | source |
LiveEvalRequestTimeoutInput | Input payload for live eval request timeout. | source |
LiveEvalResultForPerformance | Public API contract for live eval result for performance. | source |
LiveEvalResultForReport | Public API contract for live eval result for report. | source |
LiveEvalResultRecord | Record shape for live eval result. | source |
LiveEvalRunnerConfig | Configuration used by live eval runner. | source |
LiveEvalRuntime | Public API contract for live eval runtime. | source |
LiveEvalSubmitInputResponseInput | Input payload for live eval submit input response. | source |
LiveEvalWaitForOpenInputRequestInput | Input payload for live eval wait for open input request. | source |
PreparedLiveEvalInput | Input payload for prepared live eval. | source |
RunDurableRunCanaryCliInput | Input payload for run durable run canary cli. | source |
RunLiveEvalCliInput | Input payload for run live eval cli. | source |
RuntimeConfidencePreflightResult | Result returned from runtime confidence preflight. | source |
RuntimePerformanceSummary | Public API contract for runtime performance summary. | source |
TestCase | Public API contract for test case. | source |
TestResult | Result returned from test. | source |
TestSuite | Public API contract for test suite. | source |
Constants
Related
Reference modules:veryfront/chat: Client-side chat UI for agentsveryfront/tool: Define tools for agentsveryfront/provider: Configure AI model providersveryfront/workflow: Orchestrate multi-agent workflows
- agents: Define and run agents
- multi-agent: Compose multi-agent systems
- memory-and-streaming: Memory, streaming, and lifecycle
- agent-service-runtime: Deploy agents as standalone services
- skills: Attach project skills to agents
- 05-agent-runtime: Agent runtime, hosted runs, AI primitives, and skills
- 06-ag-ui-transport: AG-UI transport contract
- 11-control-plane-channels: Control-plane channels