Import
import {
addFirstTurnStarterIntentRootOwnershipReminder,
agent,
AgentRuntime,
createMemory,
getAgentsAsTools,
registerAgent,
} from "veryfront/agent";
Examples
Basic agent
import { agent } from "veryfront/agent";
const assistant = agent({
system: "You are a helpful assistant.",
});
Agent with tools
import { agent } from "veryfront/agent";
import { tool } from "veryfront/tool";
import { defineSchema } from "veryfront/schemas";
const searchTool = tool({
id: "search",
description: "Search the knowledge base",
inputSchema: defineSchema((v) =>
v.object({
query: v.string().describe("Knowledge base search query"),
})
)(),
execute: async ({ query }) => ({ results: [] }),
});
const assistant = agent({
system: "You are a helpful assistant.",
tools: { search: searchTool },
maxSteps: 5,
memory: { type: "conversation", maxMessages: 50 },
});
Agent with materialized runtime tools
import { agent } from "veryfront/agent";
import { createRemoteMCPToolSource, loadRemoteToolsFromSource } from "veryfront/tool";
const docsTools = createRemoteMCPToolSource({
id: "docs-mcp",
endpoint: "https://docs.example.com/mcp",
headers: { Authorization: "Bearer <TOKEN>" },
});
const runtimeTools = await loadRemoteToolsFromSource(docsTools, {
context: { projectId: "proj_123" },
toolNameAliases: { search_docs: "docs_search" },
});
const assistant = agent({
system: "Use the docs tools when the answer needs project documentation.",
tools: runtimeTools,
maxSteps: 5,
});
Agent with skills
import { agent } from "veryfront/agent";
const assistant = agent({
system: "You are a support engineer. Use skills when relevant.",
skills: ["incident-response", "repo-maintainer"], // omit for all visible skills
tools: {
Read: true,
github__list_issues: true,
},
});
Streaming API route
// app/api/ag-ui/route.ts
import { agent, createAgUiHandler } from "veryfront/agent";
const assistant = agent({
system: "You are a helpful assistant.",
});
export const POST = createAgUiHandler({ agent: assistant });
Multi-agent composition
import { agent, getAgentsAsTools, registerAgent } from "veryfront/agent";
const researcher = agent({ system: "Research topics thoroughly." });
const writer = agent({ system: "Write clear prose." });
registerAgent(researcher);
registerAgent(writer);
const orchestrator = agent({
system: "Coordinate research and writing.",
tools: getAgentsAsTools(["researcher", "writer"]),
maxSteps: 8,
});
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 |
avatarUrl? | string | Absolute avatar URL for registry, Studio, and chat identity surfaces. | source |
avatar_url? | string | source | |
description? | string | Optional summary shown in registry and control-plane listings. | source |
model? | ModelString | Optional model string in “provider/model” format. | source |
system | AgentSystem | (() => AgentSystem) | (() => Promise<AgentSystem>) | System instructions as text or structured messages. Structured messages preserve provider-specific metadata such as prompt-cache breakpoints. | source |
projectContext? | { projectId: string; branchId?: string | null } | Project this agent runs against. Rendered as a <project_context> block so the agent knows the project reference and branch instead of asking for them. Hosts that already compose a full call context (the hosted chat runtime, project-runtime agent runs) supply it at that layer instead. | source |
environmentContext? | string | Use this property for host-supplied browser display facts rendered in an <environment_context> block. It cannot replace the server-authored UTC <runtime_context> snapshot for a run. | source |
tools? | true | Record<string, Tool | boolean> | Project tools available to this agent. | source |
delegates? | string[] | Exact registered agent ids this agent may call through scoped agent_<id> tools. Each delegate keeps its own model, skills, and tools. | source |
sandbox? | object | Optional sandbox selection for runtime-owned sandbox tools such as bash. id attaches to an existing sandbox session and detaches on run cleanup. When omitted, sandbox tools lazily create a request/project-scoped session. | source |
providerTools? | string[] | Provider-native tools executed by the selected model provider, such as Anthropic web_search and web_fetch. | source |
mcpServers? | AgentMcpServerConfig[] | Remote MCP servers available to this agent. | source |
maxSteps? | number | Max tool-call iterations per request | source |
outputSchema? | Schema<TOutput> | JsonSchema | Constrain every response to a schema, produced via defineSchema((v) => …) (or any SchemaValidator-backed builder), or a raw JSON Schema object. | source |
temperature? | number | Sampling temperature for model generation. Defaults to 0. | source |
thinking? | RuntimeAgentThinkingConfig | Provider-neutral reasoning / thinking configuration for hosted runtimes. | source |
streaming? | boolean | Enable streaming responses | source |
memory? | MemoryConfig | Conversation memory persisted across stream() / generate() calls on this instance. Omit for the stateless default: every call runs in isolation, which keeps concurrent fan-out on a shared instance correct. When set, the instance accumulates one shared conversation, so reuse it sequentially, not across concurrent independent runs (use a separate instance per run for that). Set enabled: false to force the stateless behavior explicitly. | 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 | false | string[] | Select visible skill IDs or this agent’s own skill short names advertised in this agent’s system prompt and authorized for load_skill. | source |
suggestions? | SuggestionsConfig | Prompt starters shown on an empty chat. | source |
security? | false | Set to false to disable the default security middleware | source |
Agent<InferAgentOutputSchema<TOutputSchema>>
createHostedRunEventWriterCapability(input)
Create an exact-run event-writer capability from a credential verified by trusted ingress. General user API tokens are not run-event credentials. The returned frozen object does not expose or serialize the credential.
Returns: HostedRunEventWriterCapability
agent.generate(input)
Run the agent and return a complete response. Accepts a string or message array as input.
Returns: Promise<AgentResponse<InferAgentOutputSchema<TOutputSchema>>>
agent.generate(input)
Run the agent and return a complete response. Accepts a string or message array as input.
Returns: Promise<AgentResponse<TOutput>>
agent.stream(input)
Run the agent and stream the response. Returns a result with .toDataStreamResponse() for API routes.
Returns: Promise<AgentStreamResult>
agent.respond(request)
Handle an incoming HTTP request and return a streaming Response. Reads messages from the request body.
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>
hostedRunEventWriterCapability.mintChildRunEventWriterCapability(childRunId, abortSignal)
Exchange this run’s authority for an exact direct-child capability.
Returns: Promise<HostedRunEventWriterCapability>
Type Reference
ParsedHostedChatRequest
Request payload for parsed hosted chat.
| Property | Type | Description | Source |
|---|---|---|---|
agentId | string | undefined | source | |
userId | string | source | |
authToken | string | source | |
serverEnvelopeVerified? | true | True only after a server envelope credential is verified and bound to this run. | source |
serverResolvedProviderReplayCheckpoints? | unknown | Provider-native replay state resolved by the server outside forwardedProps so large opaque provider blocks do not consume the public forwardedProps budget. Ignored unless serverEnvelopeVerified is true. | source |
serverResolvedIntegrationToolNames? | readonly string[] | Integration tools the control plane resolved for this run, taken from the verified run-event token rather than the request body. Absent unless a token verified, so a forged body can never introduce it. | source |
messages | ChatUiMessage[] | source | |
validatedContext | ChatRequestContext | source | |
projectId | string | null | source | |
projectSlug? | string | source | |
conversationId | string | undefined | source | |
parentRunId | string | undefined | source | |
upstreamParentConversationId | string | undefined | source | |
upstreamParentRunId | string | undefined | source | |
spawnedFromToolCallId | string | undefined | source | |
taskId? | string | Durable task identity supplied only by a signed runtime invocation. | source |
model | string | undefined | source | |
allowDelegation | boolean | undefined | source | |
forwardedProps | HostedChatRequest["forwardedProps"] | source | |
runtimeOverrides | ChatRuntimeOverrides | undefined | source | |
durableRootRun | DurableRootRunDescriptor | undefined | source | |
persistLatestUserMessageBeforeDurableRun | boolean | source | |
agentConfig? | RuntimeAgentMarkdownDefinition | source |
PrepareHostedConversationRootRunContextInput
Input for hosted root-run preparation.
| Property | Type | Description | Source |
|---|---|---|---|
authToken | string | source | |
apiUrl | string | source | |
conversationId? | string | source | |
projectId? | string | null | source | |
branchId? | string | null | source | |
agentId | string | source | |
implementationKind? | string | null | source | |
messages | ChatUiMessage[] | source | |
parentRunId? | string | source | |
parentMessageId? | string | source | |
providedRun? | ConversationRootRunDescriptor | source | |
persistLatestUserMessageBeforeRun | boolean | source | |
persistLatestUserMessageOperation? | string | source | |
missingUserMessageErrorMessage? | string | source | |
onPersistLatestUserMessageFailure? | Parameters<persistLatestConversationUserMessage>[0][“onFailure”] | source | |
instrumentation? | HostedConversationRunChunkMirrorInstrumentation | source |
HostedDurableChildForkRunContextInput
Input for a hosted durable child fork context.
| Property | Type | Description | Source |
|---|---|---|---|
runEventWriterCapability? | HostedRunEventWriterCapability | Exact-child writer authority, or an authority installed by the framework scope. | source |
durableChildRun? | HostedChildRunIdentifiers | source | |
instrumentation? | HostedConversationRunChunkMirrorInstrumentation | source | |
pendingToolLogContext | HostedChildPendingToolLifecycleLogContext | source | |
pendingToolLogWriter? | HostedChildPendingToolLifecycleLogWriter | source |
ExecuteHostedChildForkWithPreparedToolsInput
Input for a hosted child fork whose tools are already prepared. Durable execution requires a capability bound to durableChildRun.childRunId.
| Property | Type | Description | Source |
|---|---|---|---|
authToken | string | source | |
apiUrl | string | source | |
runEventWriterCapability? | HostedRunEventWriterCapability | Exact-child authority required when durableChildRun is present. | source |
projectId? | string | null | source | |
description | string | source | |
kind | string | source | |
provider | string | source | |
forkModel | string | source | |
temperature? | number | source | |
maxSteps | number | source | |
effectivePrompt | string | source | |
forkContext? | HostedChildForkInstructionsContext | source | |
toolAssembly | DefaultHostedChildForkToolAssemblyResult | source | |
abortSignal? | AbortSignal | source | |
durableChildRun? | HostedChildRunIdentifiers | source | |
parentConversationId? | string | source | |
conversationId? | string | source | |
parentRunId? | string | source | |
parentMessageId? | string | source | |
trustedInvocationContext? | HostedChildInvocationContext | source | |
pendingToolLogWriter? | { warn: (message: string, metadata?: Record<string, unknown>) => void } | source | |
logger? | HostedChildForkStreamLogger | source | |
instrumentation? | HostedChildForkExecutionInstrumentation<TAttributes> | source | |
providerOptions? | Record<string, unknown> | source | |
reasoning? | RuntimeReasoningOption | source | |
sourceIntegrationPolicy? | SourceIntegrationPolicyManifest | source | |
maxContinuationSteps? | number | source | |
resolveSystem? | HostedChildForkRuntimeStepSystemResolver | source | |
buildInstructions? | () => AgentSystem | source | |
onBeforeStop? | StartHostedChildForkRuntimeWithHostToolsInput<TAttributes>[“onBeforeStop”] | source | |
runStep? | AgentRuntimeForkStepRunner | source | |
createRunContext? | (input: HostedChildForkExecutionRunContextFactoryInput<TAttributes>) => HostedDurableChildForkRunContext | source | |
startRuntime? | (input: StartHostedChildForkRuntimeWithHostToolsInput<TAttributes>) => StartedHostedChildForkRuntime | Promise<StartedHostedChildForkRuntime> | source | |
childRunMonitorPollIntervalMs? | number | source | |
idleTimeoutMs? | number | source | |
activeToolTimeoutMs? | number | source | |
postToolIdleTimeoutMs? | number | source | |
finalizationTimeoutMs? | number | source | |
startTime? | number | source | |
resultMode? | ChildRunResultMode | source | |
onSettled? | (snapshot: ChildRunExecutionSnapshot) => void | Promise<void> | source | |
writeLog? | (entry: HostedChildExecutionLogEntry) => void | source | |
shouldRethrowError? | (error: unknown) => boolean | source |
ExecuteHostedDurableChildForkInput
Input for bootstrapping and executing a hosted durable child fork. runEventWriterCapability carries exact-parent authority; this helper mints the exact-child capability only after the child run is persisted.
| Property | Type | Description | Source |
|---|---|---|---|
authToken | string | source | |
apiUrl | string | source | |
runEventWriterCapability? | HostedRunEventWriterCapability | Opaque exact-parent authority used only to mint this invocation’s child writer. | source |
forkInput | HostedChildForkToolInput | source | |
executionOptions | { toolCallId: string; abortSignal?: AbortSignal } | source | |
childAgentId | string | source | |
runProjectId? | string | null | source | |
parentConversationId? | string | source | |
parentRunId? | string | source | |
parentMessageId? | string | source | |
trustedInvocationContext? | HostedChildInvocationContext | source | |
getProjectId | () => string | null | undefined | source | |
getRuntimeTargetKind? | () => ConversationRunTargets[“runtimeTargetKind”] | undefined | source | |
getRuntimeTargetEnvironmentId? | () => string | null | undefined | source | |
getBranchId? | () => string | null | undefined | source | |
getContextModel? | () => string | undefined | source | |
resolveProjectReference? | HostedProjectReferenceResolver | source | |
defaultModel | string | source | |
resolveModelId | (model: string) => string | source | |
resolveProvider | (modelId: string) => string | source | |
onRequestedProjectId? | (projectId: string, projectSlug?: string) => Promise<void> | void | source | |
publishParentRunEvents? | (events: InvokeAgentChildRunProgressEvent[]) => Promise<void> | void | source | |
contextUnavailableMessage | string | source | |
setupFailedCode | string | source | |
executionFailedCode | string | source | |
executeLocal | (options?: HostedDurableChildExecutionOptions) => Promise<TLocalResult> | TLocalResult | source | |
getExecutionSnapshot | () => ChildRunExecutionSnapshot | null | source | |
buildContextUnavailableResult | (message: string) => TResult | source | |
buildSetupFailureResult | (failure: HostedDurableChildSetupFailure) => TResult | source | |
buildTerminalFailureResult | (failure: HostedDurableChildTerminalFailure) => TResult | source | |
buildSuccessResult | (success: HostedDurableChildSuccess<TLocalResult>) => TResult | source | |
onLifecycleError? | (error: unknown) => Promise<void> | void | source | |
onLifecycleFinalized? | (input: { identifiers: HostedChildRunIdentifiers; status: “completed” }) => Promise<void> | void | source | |
bootstrap? | HostedDurableChildBootstrapCallbacks | source | |
runtime? | HostedDurableChildRuntimeDependencies | source |
DefaultHostedInvokeAgentToolOptions
Options for the default hosted invoke-agent tool. runEventWriterCapability carries the current parent run’s authority and is delegated internally after each durable child run is persisted.
| Property | Type | Description | Source |
|---|---|---|---|
context | TContext | source | |
runEventWriterCapability? | HostedRunEventWriterCapability | Opaque exact-parent authority used to persist durable delegated child events. | source |
getConfig | () => DefaultHostedInvokeAgentConfig | source | |
logger | DefaultHostedInvokeAgentLogger | source | |
trace | DefaultHostedInvokeAgentTrace | source | |
setTraceAttributes | (attributes: DefaultHostedInvokeAgentTraceAttributes) => void | source | |
createBashTool | AgentServiceSandboxToolsOptions["createBashTool"] | source | |
resolveModelId | (model: string) => string | source | |
resolveProvider | (modelId: string) => string | source | |
resolveProviderOptions? | (forkModel: string, thinkingConfig: HostedChildForkRuntimeConfig[“thinkingConfig”]) => Record<string, unknown> | undefined | source | |
resolveReasoning? | (forkModel: string, thinkingConfig: HostedChildForkRuntimeConfig[“thinkingConfig”]) => RuntimeReasoningOption | undefined | source | |
resolveModelThinking? | (modelId: string) => HostedChildForkRuntimeConfig[“thinkingConfig”] | source | |
shouldRethrowError? | (error: unknown) => boolean | source | |
buildGlobalTools? | (context: TContext, childAgentId: string, childConfig?: DefaultHostedChildAgentExecutionConfig, durableChildRun?: HostedChildRunIdentifiers) => HostToolSet | source | |
resolveChildAgentExecutionConfig? | (childAgentId: string, projectId: string) => Promise<DefaultHostedChildAgentExecutionConfig | undefined> | source | |
resolveProjectReference? | HostedProjectReferenceResolver | source | |
refreshProjectSkillIds? | DefaultHostedInvokeAgentProjectRefresh<TContext> | source | |
requireDurableInvokeAgent? | boolean | Require durable child lifecycle even when legacy generic delegation is disabled. | source |
defaultModel? | string | source | |
defaultMaxSteps? | number | source | |
resolveChildAgentId? | (input: DefaultHostedInvokeAgentInput) => string | source | |
createAgentServiceSandboxTools? | (input: AgentServiceSandboxToolsOptions) => Promise<AgentServiceSandboxToolsResult> | source | |
createRemoteToolSource? | (config: RemoteMCPToolSourceConfig) => RemoteToolSource | source | |
createToolsFromRemoteDefinitions? | createToolsFromRemoteDefinitions | source | |
createLiveStudioTools? | Parameters<prepareDefaultHostedChildForkSandboxToolSources>[0][“createLiveStudioTools”] | source | |
startRuntime? | (input: StartHostedChildForkRuntimeWithHostToolsInput<DefaultHostedInvokeAgentTraceAttributes>) => StartedHostedChildForkRuntime | Promise<StartedHostedChildForkRuntime> | source |
HostedDurableRunStartExecutionInput
Input delivered to a hosted durable-run starter after request isolation.
HostedAgentServiceDetachedExecutionInput
Input delivered to a hosted agent-service detached execution callback.
Exports
Components
| Name | Description | Source |
|---|---|---|
AGENT_CATALOG_ACTIONS | source | |
AGENT_CATALOG_KINDS | source | |
AGENT_DELEGATE_TOOL_PREFIX | Prefix used for the delegate tool exposed to the coordinator agent. | 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 | Marker authored instructions use to place runtime blocks mid-prompt. | source |
DELEGATE_ONLY_WHEN_MATERIALLY_HELPFUL | Delegation is a cost; take it only when it buys something. | 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 | Keep the visible answer owned by the root assistant, not a delegate. | source |
LOAD_SKILL_CONTINUATION_REMINDER | Shared load skill continuation reminder value. | source |
LOAD_SKILL_CONTINUE_SAME_TURN | Loading a skill is not doing the work; the turn continues. | 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 | A skill’s model/thinking/maxSteps only take effect if the caller forwards them. | source |
LOAD_SKILL_ROOT_OWNERSHIP | Shared load skill root ownership value. | source |
MAX_HOSTED_CHAT_REQUEST_MESSAGE_PARTS | Upper bound on parts accepted per replayed hosted chat message (DoS guard). | source |
MAX_HOSTED_CHAT_REQUEST_MESSAGES | Upper bound on replayed messages accepted per hosted chat request (DoS guard). | 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_AGENT_EXECUTION_KINDS | source | |
PROJECT_AGENT_KINDS | 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_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 | source | |
appendAgentServiceChildMirrorChunk | Append hosted child mirror chunk. | 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 |
bootstrapConversationAgentRun | Bootstrap conversation agent run helper. | source |
bootstrapHostedChildRun | Bootstrap hosted child run helper. | source |
buildAgentCallContext | Builds the layered system-message set for one provider call (RFC 0001). | source |
buildAgentDelegateTools | Builds the opt-in delegate tools for a coordinator agent. | source |
buildAgentRunTraceAttributes | Builds agent run trace attributes. | source |
buildAgUiFinalizeResponse | Response payload for build AG-UI 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 | Build a fork runtime step from an agent response. | 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 |
buildParsedAgentServiceAgUiRequest | Request payload for build parsed hosted AG-UI. | source |
buildParsedAgentServiceChatRequest | Builds a public hosted chat request without trusting client-supplied runtime targets. | source |
buildParsedHostedAgUiRequest | Request payload for build parsed hosted AG-UI. | source |
buildParsedHostedChatRequest | Builds a public hosted chat request without trusting client-supplied runtime targets. | source |
buildProjectContextPromptBlock | Builds the shared project-context prompt block (project reference + branch). | source |
buildProjectInstructionsPromptBlock | Builds the project-instructions prompt block. | source |
buildProjectServiceTraceAttributes | Builds Datadog unified service trace attributes for a hosted project run. | 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 a bounded, injection-safe runtime available-skills prompt. | source |
buildRuntimeLoadedSkillResponse | Build a bounded loaded-skill response and fail closed on invalid metadata. | source |
buildRuntimeSkillDefinition | Build a bounded, immutable runtime skill definition. | source |
buildScheduleTraceAttributes | Builds schedule trigger trace attributes from schedule forwarded props. | 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 |
closeAgentServiceChildReasoningSegment | Close hosted child reasoning segment helper. | source |
closeAgentServiceChildTextSegment | Close hosted child text segment helper. | 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 |
createAgentServiceAgUiValidationErrorResponse | Response payload for create hosted AG-UI validation error. | source |
createAgentServiceAuth | Create hosted service auth. | source |
createAgentServiceChildMirrorContext | Context for create hosted child mirror. | source |
createAgentServiceFormInputTool | Create hosted form input tool. | source |
createAgentServiceProjectSteering | Create hosted agent project steering. | source |
createAgentServiceRegistrationLifecycle | Create agent service registration lifecycle. | source |
createAgentServiceRouteSet | Create hosted agent service route set. | source |
createAgentServiceRuntime | Create agent service runtime. | source |
createAgentServiceServerRuntime | Create agent service server runtime. | source |
createAgUiCancelHandler | Handler for create AG-UI cancel. | source |
createAgUiChatUiChunkEncoder | Create AG-UI chat UI chunk encoder. | source |
createAgUiChatUiTrackedResponse | Response payload for create AG-UI chat UI tracked response. | source |
createAgUiChunkEncoder | Create AG-UI chunk encoder. | source |
createAgUiChunkEncoderBridge | Create AG-UI chunk encoder bridge. | source |
createAgUiDetachedStartHandler | Handler for create AG-UI detached start. | source |
createAgUiEncoderState | State for create AG-UI encoder. | source |
createAgUiFinalizeTracker | Create AG-UI finalize tracker. | source |
createAgUiHandler | Handler for create AG-UI. | source |
createAgUiResponseStream | Create AG-UI response stream. | source |
createAgUiResumeHandler | Handler for create AG-UI resume. | source |
createAgUiRunErrorEvent | Event emitted for create AG-UI run error. | 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 |
createAgUiRuntimeResponse | Response payload for create AG-UI runtime response. | source |
createAgUiSseErrorResponse | Response payload for create AG-UI sse error. | source |
createAgUiSseResponse | Response payload for create AG-UI sse. | source |
createAgUiTrackedResponse | Response payload for create AG-UI tracked response. | 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 |
createDefaultAgentServiceChatRuntime | Create default hosted chat runtime. | source |
createDefaultAgentServiceInvokeAgentTool | Create default hosted invoke agent tool. | source |
createDefaultAgentServiceProjectSteeringRefresh | Create default hosted project steering refresh. | 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 a project-scoped remote tool source. The source retains its last successful catalog for the active project during transient discovery failures and retries refreshes with bounded backoff. | 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 |
createHostedRunEventWriterCapability | Create an exact-run event-writer capability from a credential verified by trusted ingress. General user API tokens are not run-event credentials. The returned frozen object does not expose or serialize the credential. | 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 |
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 |
createVeryfrontCloudAgentServiceChatExecutionRootRunOptions | Options accepted by create Veryfront Cloud hosted chat execution root run. | source |
createVeryfrontCloudHostedChatExecutionRootRunOptions | Options accepted by create Veryfront Cloud hosted chat execution root run. | source |
createVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptions | Options accepted by create Veryfront Cloud prepared hosted chat execution runtime. | 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 |
deriveAgentServiceAgUiChatContext | Context for derive hosted AG-UI chat. | 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 |
executeDefaultAgentServiceInvokeAgentTool | Execute default hosted invoke agent tool. | 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 | Normalize allowed remote tool names without adding undeclared provider-native tools. | 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 |
fetchDefaultAgentServiceProjectSteering | Fetch default hosted project steering helper. | 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 |
finalizeAgUiEvents | Finalize AG-UI 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 |
findSubmittedFormInputResult | Find the latest submitted form_input result persisted after the latest user 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 bounded runtime skill metadata for prompt use. | 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 |
getAgentServiceTokenFromRequest | Request payload for get hosted service token from. | 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 only the confirmed project id for legacy callers. | 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 |
isAbortRejectionReason | Check whether a rejection came from an abort signal. | source |
isActiveConversationRunStatus | Check whether a conversation run status is active. | source |
isAgentCatalogAction | source | |
isAgentCatalogKind | source | |
isAgentServiceAuthError | Error shape for is hosted service auth. | source |
isAgentTraceAttributeValue | Check whether a value can be used as an agent trace attribute. | source |
isAlreadyMirroredAgentServiceChunk | Check whether a hosted chunk was already mirrored. | 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 |
isInstalledProjectAgentKind | source | |
isProjectAgentExecutionKind | source | |
isProjectAgentKind | source | |
isProviderSafeDelegateId | Whether a delegate id produces a provider-safe agent_{id} tool name. | 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 immediate files in the legacy references/ directory. | source |
listRuntimeBuiltinSkillReferences | List runtime builtin skill references. | 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 |
mapRuntimeStreamEventToAgUiEvents | Map runtime stream event to AG-UI 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 |
normalizeAgUiMessages | Normalizes AG-UI messages. | source |
normalizeAgUiRuntimeMessages | Normalizes AG-UI runtime messages. | source |
normalizeAgUiRuntimeRequest | Request payload for normalize AG-UI runtime. | 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 |
normalizeParsedAgentServiceChatRequest | Request payload for normalize parsed hosted chat. | source |
normalizeParsedHostedChatRequest | Request payload for normalize parsed hosted chat. | source |
normalizeRuntimeSkillReferencePath | Normalizes and bounds a portable runtime skill reference path. | source |
parseAgentServiceChatRequestFromRequest | Request payload for parse hosted chat request from. | 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 |
parseRuntimeAgentRunInvocationAgentServiceChatRequestFromRequest | Request payload for parse runtime agent run invocation hosted chat request from. | 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 a bounded runtime skill document and fails closed on invalid input. | source |
parseRuntimeSkillMetadata | Parses bounded runtime skill metadata and fails closed on invalid input. | 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 |
prepareAgentServiceChatExecution | Prepare hosted chat execution. | source |
prepareAgentServiceChatRuntimeCreationOptions | Options accepted by prepare hosted chat runtime creation. | source |
prepareAgentServiceChatRuntimeMessages | Prepare hosted chat runtime messages. | source |
prepareAgentServiceConversationRootRunContext | Context for prepare hosted conversation root run. | 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 |
prepareVeryfrontCloudAgentServiceChatExecution | Prepare Veryfront Cloud hosted chat execution. | 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 |
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 |
runPreparedAgentServiceChatExecutionDetached | Run prepared hosted chat execution detached. | source |
runPreparedHostedChatExecutionDetached | Run prepared hosted chat execution detached. | source |
runWithProjectAgentRuntime | Execute a project-runtime lifetime without allowing an outer policy to widen. | source |
runWithRunEventSink | Scope an operation to a run event sink. | 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 |
snapshotHostedRuntimeSourceIdentity | Capture a service-owned immutable copy of a declared runtime source. | source |
startAgentRuntimeFork | Starts agent runtime fork. | source |
startAgentRuntimeForkWithHostTools | Starts agent runtime fork with host tools. | 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 |
streamPreparedAgentServiceChatExecutionToAgUiResponse | Response payload for stream prepared hosted chat execution to AG-UI. | 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 |
toMirroredAgentServiceStreamPart | Converts a value to mirrored hosted stream part. | 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 |
verifyHostedRuntimeSourceBinding | Verify that a control-plane request addresses the exact source snapshot served here. | source |
veryfrontApiMcpServer | Veryfront API MCP server helper. | source |
veryfrontStudioMcpServer | Veryfront Studio 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 |
AgentServiceAuthError | Error shape for hosted service auth. | source |
AppendConversationRunEventsError | Error shape for append conversation run events. | source |
BufferMemory | Implement buffer memory. | source |
ConversationMemory | Implement conversation memory. | source |
ConversationRunEventEncoder | 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 |
AgentCallProjectContext | Project the call runs against, rendered as the <project_context> block. | source |
AgentCatalogAction | source | |
AgentCatalogKind | source | |
AgentConfig | Configuration used by agent. | source |
AgentContext | Context for agent. | source |
AgentContract | Framework-owned agent service contract. | source |
AgentGenerateInput | Request payload accepted by Agent.generate. | source |
AgentHttpMcpServerConfig | HTTP MCP server available to an agent. | source |
AgentMcpHttpTransport | HTTP transport configuration for one MCP server. | source |
AgentMcpServerAuth | Authentication configuration for one MCP server. | source |
AgentMcpServerConfig | MCP server available to an agent. | source |
AgentMcpToolPolicy | Policy for tools exposed by one MCP server. | source |
AgentMessage | Message exchanged with an agent. | source |
AgentMiddleware | Public API contract for agent middleware. You must call next at most once during one middleware invocation. The continuation becomes invalid when the middleware’s returned promise settles. Calling it again or after settlement rejects with the registered middleware-error. | source |
AgentOutputSchema | Schema accepted by outputSchema, in either supported form. | 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 |
AgentRunEvent | Event produced by an agent run runtime boundary. | source |
AgentRunEventSink | Receives events produced within one scoped agent run execution. | source |
AgentRunModelCallContextEvent | Provider-agnostic input persisted before one model dispatch. System-message provider options contain only validated prompt-cache metadata. Other provider-specific values are excluded because run events are durable. | 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 |
AgentServiceActiveSpanAttributes | Public API contract for hosted agent service active span attributes. | source |
AgentServiceAgUiChatForwardedConfig | Configuration used by hosted AG-UI chat forwarded. | source |
AgentServiceAuth | Public API contract for hosted service auth. | source |
AgentServiceAuthConfig | Configuration used by hosted service auth. | source |
AgentServiceAuthenticatedRequest | Request payload for hosted service authenticated. | source |
AgentServiceAuthErrorCode | Public API contract for hosted service auth error code. | source |
AgentServiceAuthFetch | Public API contract for hosted service auth fetch. | source |
AgentServiceAuthLogger | Public API contract for hosted service auth logger. | source |
AgentServiceAuthOptions | Options accepted by hosted service auth. | source |
AgentServiceAuthTrace | Public API contract for hosted service auth trace. | source |
AgentServiceBootstrapExit | Public API contract for agent service bootstrap exit. | source |
AgentServiceChatProjectAccessError | Error shape for hosted chat project access. | source |
AgentServiceChatProjectAccessResult | Result returned from hosted chat project access. | source |
AgentServiceChatRequestPrincipal | Public API contract for hosted chat request principal. | source |
AgentServiceChatRuntimeAgent | Public API contract for hosted chat runtime agent. | source |
AgentServiceChatRuntimeCreationOptions | Options accepted by hosted chat runtime creation. | source |
AgentServiceChatRuntimeCreationResult | Result returned from hosted chat runtime creation. | source |
AgentServiceChatRuntimeFinishPart | Public API contract for hosted chat runtime finish part. | source |
AgentServiceChatRuntimeOnFinishEvent | Event emitted for hosted chat runtime on finish. | source |
AgentServiceChatRuntimeProjectSteering | Public API contract for hosted chat runtime project steering. | source |
AgentServiceChatRuntimeStreamInput | Input payload for hosted chat runtime stream. | source |
AgentServiceChatRuntimeStreamResult | Result returned from hosted chat runtime stream. | source |
AgentServiceChatRuntimeToolAssemblyResult | Result returned from hosted chat runtime tool assembly. | source |
AgentServiceChatRuntimeToUiMessageStreamOptions | Options accepted by hosted chat runtime to UI message stream. | source |
AgentServiceChildChunkMirror | Public API contract for hosted child chunk mirror. | source |
AgentServiceChildMirrorContext | Context for hosted child mirror. | source |
AgentServiceChildMirrorPart | Public API contract for hosted child mirror part. | source |
AgentServiceChildMirrorState | State for hosted child mirror. | source |
AgentServiceConfig | Configuration used by agent service. | source |
AgentServiceConfigInput | Input payload for agent service config. | source |
AgentServiceConversationRootRunContext | Context for hosted conversation root run. | source |
AgentServiceConversationRootRunState | State for hosted conversation root run. | source |
AgentServiceCorsConfig | Configuration used by agent service cors. | source |
AgentServiceDefinition | Type-preserving service definition for request-native agent service runtimes. | source |
AgentServiceDetachedCleanupInput | Input payload for hosted agent service detached cleanup. | source |
AgentServiceDetachedExecutionInput | Input delivered to a hosted agent-service detached execution callback. | source |
AgentServiceEnvFileLoadOptions | Options accepted by agent service env file load. | source |
AgentServiceEnvFileLoadResult | Result returned from agent service env file load. | source |
AgentServiceFormInputToolContext | Context for hosted form input tool. | source |
AgentServiceJwtError | Error shape for hosted service jwt. | source |
AgentServiceJwtResult | Result returned from hosted service jwt. | 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 |
AgentServiceProjectAccessError | Error shape for hosted service project access. | source |
AgentServiceProjectAccessResult | Result returned from hosted service project access. | source |
AgentServiceProjectSkillIdsContext | Context for hosted project skill IDs. | source |
AgentServiceProjectSteering | Public API contract for hosted agent project steering. | source |
AgentServiceProjectSteeringLogger | Public API contract for hosted agent project steering logger. | source |
AgentServiceProjectSteeringOptions | Options accepted by hosted agent project steering. | source |
AgentServiceProjectSteeringOptionsData | Public API contract for hosted agent project steering options data. | 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 |
AgentServiceRouteSet | Public API contract for hosted agent service route set. | source |
AgentServiceRouteSetOptions | Options accepted by hosted agent service route set. | source |
AgentServiceRoutesLogger | Public API contract for hosted agent service routes logger. | source |
AgentServiceRoutesTrace | Public API contract for hosted agent service routes trace. | 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 |
AgentServiceStreamExecutionInput | Input payload for hosted agent service stream execution. | 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 |
AgentStreamInput | Request payload accepted by Agent.stream. | source |
AgentStreamResult | Result returned from agent stream. | source |
AgentSystem | System instructions accepted by an agent runtime. | 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 |
AgentVeryfrontMcpServerConfig | Veryfront-owned MCP server available to an agent. | source |
AgentVeryfrontMcpServerKind | Veryfront-owned MCP server kind. | 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 | Deprecated compatibility alias for AgUiChunkEncoder. | source |
AgUiBrowserEncodedEvent | Deprecated compatibility alias for AgUiEncodedEvent. | source |
AgUiBrowserEncoderState | Deprecated compatibility alias for AgUiEncoderState. | source |
AgUiBrowserFinalizeTracker | Deprecated compatibility alias for AgUiFinalizeTracker. | source |
AgUiBrowserResponseEncoder | Deprecated compatibility alias for AgUiResponseEncoder. | source |
AgUiBrowserResponseExecution | Deprecated compatibility alias for AgUiResponseExecution. | source |
AgUiBrowserResponseRequestState | Deprecated compatibility alias for AgUiResponseRequestState. | source |
AgUiBrowserRunFinishedMetadata | Deprecated compatibility alias for AgUiRunFinishedMetadata. | source |
AgUiCancelHandlerOptions | Options accepted by AG-UI cancel handler. | source |
AgUiChatUiChunkBrowserEncoder | Deprecated compatibility alias for AgUiChatUiChunkEncoder. | source |
AgUiChatUiChunkEncoder | Public API contract for AG-UI chat UI chunk encoder. | source |
AgUiChunkEncoder | Public API contract for AG-UI chunk encoder. | source |
AgUiChunkEncoderBridge | Public API contract for AG-UI chunk encoder bridge. | source |
AgUiCompletion | Payload handed to AgUiHandlerOptions.onComplete after an AG-UI run streams to completion successfully - the server-side counterpart to the client’s useConversationChat persistence path. Lets an application persist the finalized conversation without reconstructing it from the SSE stream. | 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 |
AgUiEncodedEvent | Event emitted for AG-UI encoded. | source |
AgUiEncoderState | State for AG-UI encoder. | source |
AgUiFinalizeTracker | Public API contract for AG-UI finalize tracker. | 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 |
AgUiOnComplete | Called once after a successful AG-UI run with the finalized conversation. | source |
AgUiRequest | Request payload for AG-UI. | source |
AgUiResponseEncoder | Public API contract for AG-UI response encoder. | source |
AgUiResponseExecution | Public API contract for AG-UI response execution. | source |
AgUiResponseRequestState | State for AG-UI response request. | 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 |
AgUiRunFinishedMetadata | Public API contract for AG-UI run finished metadata. | 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 |
BaseAgentResponse | Response payload for agent, before structured-output typing. | 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 |
BuildAgentCallContextInput | Input payload for build agent call context. | source |
BuildAgentDelegateToolsInput | Input payload for build agent delegate tools. | 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 |
BuildParsedAgentServiceAgUiRequestOptions | Options accepted by build parsed hosted AG-UI request. | source |
BuildParsedHostedAgUiRequestOptions | Options accepted by build parsed hosted AG-UI request. | source |
BuildVeryfrontCloudRuntimeInstructionsOptions | Options for building Veryfront Cloud runtime instructions. | 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 |
ConversationRunEventEncoderOptions | Options accepted by the conversation run event encoder. | 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 | Deprecated compatibility alias for CreateAgUiChunkEncoderOptions. | source |
CreateAgUiBrowserFinalizeTrackerOptions | Deprecated compatibility alias for CreateAgUiFinalizeTrackerOptions. | source |
CreateAgUiBrowserResponseStreamInput | Deprecated compatibility alias for CreateAgUiResponseStreamInput. | source |
CreateAgUiChatUiChunkBrowserEncoderOptions | Deprecated compatibility alias for CreateAgUiChatUiChunkEncoderOptions. | source |
CreateAgUiChatUiChunkEncoderOptions | Options accepted by create AG-UI chat UI chunk encoder. | source |
CreateAgUiChatUiTrackedBrowserResponseInput | Deprecated compatibility alias for CreateAgUiChatUiTrackedResponseInput. | source |
CreateAgUiChatUiTrackedResponseInput | Input payload for create AG-UI chat UI tracked response. | source |
CreateAgUiChunkEncoderBridgeOptions | Options accepted by create AG-UI chunk encoder bridge. | source |
CreateAgUiChunkEncoderOptions | Options accepted by create AG-UI chunk encoder. | source |
CreateAgUiFinalizeTrackerOptions | Options accepted by create AG-UI finalize tracker. | source |
CreateAgUiResponseStreamInput | Input payload for create AG-UI response stream. | source |
CreateAgUiRuntimeBrowserResponseInput | Deprecated compatibility alias for CreateAgUiRuntimeResponseInput. | source |
CreateAgUiRuntimeChatStreamEncoderOptions | Options accepted by create AG-UI runtime chat stream encoder. | source |
CreateAgUiRuntimeEventEncoderOptions | Options accepted by create AG-UI runtime event encoder. | source |
CreateAgUiRuntimeResponseInput | Input payload for create AG-UI runtime response. | source |
CreateAgUiTrackedBrowserResponseInput | Deprecated compatibility alias for CreateAgUiTrackedResponseInput. | source |
CreateAgUiTrackedResponseInput | Input payload for create AG-UI tracked 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 |
CreateDefaultAgentServiceChatRuntimeContextInput | Input payload for create default hosted chat runtime context. | source |
CreateDefaultAgentServiceChatRuntimeOptions | Options accepted by create default hosted chat runtime. | source |
CreateDefaultAgentServiceProjectSteeringRefreshOptions | Options accepted by create default hosted project steering refresh. | 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 |
CreateVeryfrontCloudPreparedAgentServiceChatExecutionRuntimeOptionsInput | Input payload for create Veryfront Cloud prepared hosted chat execution runtime options. | 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 |
DefaultAgentServiceChatRuntimeConfig | Configuration used by default hosted chat runtime. | source |
DefaultAgentServiceChatRuntimeCreationOptions | Options accepted by default hosted chat runtime creation. | source |
DefaultAgentServiceChatRuntimeLogger | Public API contract for default hosted chat runtime logger. | source |
DefaultAgentServiceChatRuntimeProjectSwitchInput | Input payload for default hosted chat runtime project switch. | source |
DefaultAgentServiceChatRuntimeSteeringMutationInput | Input payload for default hosted chat runtime steering mutation. | source |
DefaultAgentServiceChatRuntimeSystemRefreshInput | Input payload for default hosted chat runtime system refresh. | source |
DefaultAgentServiceChatRuntimeTaskContext | Context for default hosted chat runtime task. | source |
DefaultAgentServiceInvokeAgentConfig | Configuration used by default hosted invoke agent. | source |
DefaultAgentServiceInvokeAgentContext | Context for default hosted invoke agent. | source |
DefaultAgentServiceInvokeAgentInput | source | |
DefaultAgentServiceInvokeAgentLogger | Public API contract for default hosted invoke agent logger. | source |
DefaultAgentServiceInvokeAgentProjectRefresh | Public API contract for default hosted invoke agent project refresh. | source |
DefaultAgentServiceInvokeAgentToolOptions | Options for the default hosted invoke-agent tool. runEventWriterCapability carries the current parent run’s authority and is delegated internally after each durable child run is persisted. | source |
DefaultAgentServiceInvokeAgentToolResult | Result returned from default hosted invoke agent tool. | source |
DefaultAgentServiceInvokeAgentTrace | Public API contract for default hosted invoke agent trace. | source |
DefaultAgentServiceInvokeAgentTraceAttributes | Public API contract for default hosted invoke agent trace attributes. | source |
DefaultAgentServiceProjectSteeringFetchers | Public API contract for default hosted project steering fetchers. | source |
DefaultAgentServiceProjectSteeringRefreshLogger | Public API contract for default hosted project steering refresh logger. | source |
DefaultAgentServiceProjectSteeringRefreshLookup | Public API contract for default hosted project steering refresh lookup. | 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 | 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 for the default hosted invoke-agent tool. runEventWriterCapability carries the current parent run’s authority and is delegated internally after each durable child run is persisted. | 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 |
DelegateAgentResolver | Resolves a registered agent by id (defaults to the global registry). | source |
DerivedAgentServiceAgUiChatContext | Context for derived hosted AG-UI chat. | 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 |
DispatchConversationHostedTerminalStateOptions | Options accepted by conversation hosted terminal state dispatch. | 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 for executing a hosted child-fork tool input. When durableChildRun is present, runEventWriterCapability must carry exact-child authority; parent and sibling capabilities fail before dispatch. | source |
ExecuteHostedChildForkWithPreparedToolsInput | Input for a hosted child fork whose tools are already prepared. Durable execution requires a capability bound to durableChildRun.childRunId. | source |
ExecuteHostedDurableChatRunInput | Input payload for execute hosted durable chat run. | source |
ExecuteHostedDurableChildForkInput | Input for bootstrapping and executing a hosted durable child fork. runEventWriterCapability carries exact-parent authority; this helper mints the exact-child capability only after the child run is persisted. | 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 |
FetchDefaultAgentServiceProjectSteeringInput | Input payload for fetch default hosted project steering. | 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 delivered to a hosted agent-service detached execution callback. | 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. A request accepts at most 1,000 replayed messages and at most 1,000 parts in each message. | 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 | 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 for a hosted durable child fork 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 delivered to a hosted durable-run starter after request isolation. | source |
HostedFormInputToolContext | Context for hosted form input tool. | source |
HostedHostToolPolicy | Service-operator authorization ceiling for Framework-owned host tools. | 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 |
HostedRunEventWriterCapability | Opaque authority for appending events to one exact hosted run. | source |
HostedRuntimeRequestConfigAgent | Public API contract for hosted runtime request config agent. | source |
HostedRuntimeRequestConfigRequest | Request payload for hosted runtime request config. | source |
HostedRuntimeSourceBindingError | Stable control-plane error returned when a request cannot run on this service snapshot. | source |
HostedRuntimeSourceIdentity | Immutable project source identity served by a standalone agent-service process. | 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 |
InstalledProjectAgentExecutionIdentity | source | |
InstalledProjectAgentRunSnapshot | 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 |
ModelCallMessage | Provider-agnostic message supplied to a model runtime. | source |
ModelCallTool | Resolved provider-agnostic tool definition supplied to a model runtime. | 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 | Full type of a prepared cloud agent chat execution, ready to stream or detach. | source |
NodeVeryfrontCloudAgentServiceProcessTarget | Public API contract for node Veryfront Cloud agent service process target. | source |
NormalizedAgentServiceChatRequest | Request payload for normalized hosted chat. | 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 |
ParseAgentServiceChatRequestOptions | Options accepted by parse hosted chat request. | source |
ParseAgUiSseResponseOptions | Options for parseAgUiSseResponse(). | source |
ParsedAgentServiceAgUiRequest | Request payload for parsed hosted AG-UI. | source |
ParsedAgentServiceChatRequest | Request payload for parsed hosted chat. | 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 |
ParseRuntimeAgentRunInvocationHostedChatRequestOptions | Options accepted when parsing a signed control-plane runtime invocation. | source |
PersistConversationUserMessageFailure | Public API contract for persist conversation user message failure. | source |
PrepareAgentRuntimeMessagesFromUiMessagesOptions | Options accepted by prepare agent runtime messages from UI messages. | source |
PrepareAgentServiceChatRuntimeMessagesOptions | Options accepted by prepare hosted chat runtime messages. | source |
PrepareAgentServiceConversationRootRunContextInput | Input for hosted root-run preparation. | source |
PrepareConversationRootRunLifecycleOptions | Options accepted by prepare conversation root run lifecycle. | source |
PreparedAgentServiceChatExecution | Public API contract for prepared hosted chat execution. | source |
PreparedAgentServiceChatExecutionDetachedInput | Input payload for prepared hosted chat execution detached. | source |
PreparedAgentServiceChatExecutionRuntimeOptions | Options accepted by prepared hosted chat execution runtime. | source |
PreparedAgentServiceChatExecutionStreamInput | Input payload for prepared hosted chat execution stream. | 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 for hosted root-run preparation. | source |
PrepareVeryfrontCloudAgentServiceChatExecutionInput | Input payload for prepare Veryfront Cloud hosted chat execution. | source |
PrepareVeryfrontCloudHostedChatExecutionInput | Input payload for prepare Veryfront Cloud hosted chat execution. | source |
ProjectAgentExecutionIdentity | source | |
ProjectAgentExecutionKind | source | |
ProjectAgentKind | source | |
ProjectAgentRunSnapshot | source | |
ProjectAgentRuntimeAgentIdCandidates | Public API contract for project agent runtime agent ID candidates. | source |
ProjectAgentRuntimeAgentSource | Public API contract for project agent runtime agent source. | source |
ProjectAgentRuntimeDiscovery | Project discovery plus the normalized policy owned by that exact 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 | 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 a signed runtime agent 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 |
RuntimeLoadSkillBuiltinStore | Public API contract for runtime load skill builtin store. | source |
RuntimeLoadSkillErrorOutput | Output from runtime load skill error. | source |
RuntimeLoadSkillInventoryOutput | One bounded page of authorized skill IDs returned by runtime load skill. | 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 |
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 |
SourceProjectAgentExecutionIdentity | source | |
SourceProjectAgentRunSnapshot | 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 |
SuggestionConfig | Source configuration accepted for one suggestion. | source |
Suggestions | Public API contract for suggestions. | source |
SuggestionsConfig | Source configuration accepted for an agent’s 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 |
VeryfrontCloudAgentServiceChatExecutionPreparationLogger | Public API contract for Veryfront Cloud hosted chat execution preparation logger. | source |
VeryfrontCloudAgentServiceOptions | Options accepted by Veryfront Cloud agent service. | source |
VeryfrontCloudHostedChatExecutionPreparationLogger | Public API contract for Veryfront Cloud hosted chat execution preparation logger. | 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 |
|---|---|---|
agentServiceAgUiChatForwardedConfigSchema | Schema for agent service AG-UI chat forwarded config. Schema for hosted AG-UI chat forwarded config. | 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 legacy SSE event names. | source |
buildAgUiBrowserFinalizeResponse | Deprecated compatibility alias for buildAgUiFinalizeResponse. | source |
conversationRunEventTypes | Shared conversation run event types value. | source |
createAgUiBrowserChunkEncoder | Deprecated compatibility alias for createAgUiChunkEncoder. | source |
createAgUiBrowserEncoderState | Deprecated compatibility alias for createAgUiEncoderState. | source |
createAgUiBrowserFinalizeTracker | Deprecated compatibility alias for createAgUiFinalizeTracker. | source |
createAgUiBrowserResponseStream | Deprecated compatibility alias for createAgUiResponseStream. | source |
createAgUiChatUiChunkBrowserEncoder | Deprecated compatibility alias for createAgUiChatUiChunkEncoder. | source |
createAgUiChatUiTrackedBrowserResponse | Deprecated compatibility alias for createAgUiChatUiTrackedResponse. | source |
createAgUiRuntimeBrowserResponse | Deprecated compatibility alias for createAgUiRuntimeResponse. | source |
createAgUiTrackedBrowserResponse | Deprecated compatibility alias for createAgUiTrackedResponse. | source |
defaultHostedInvokeAgentInputSchema | Schema for default hosted invoke agent input. | source |
defaultHostedInvokeAgentSelectionSchema | Schema for default hosted invoke agent selection. | source |
finalizeAgUiBrowserEvents | Deprecated compatibility alias for finalizeAgUiEvents. | 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 |
getHostedDurableChildInvokeResultSchema | Published contract for the invoke_agent tool result this module writes. | 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. A request accepts at most 1,000 replayed messages and at most 1,000 parts in each message. | 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 |
loadRuntimeAgentMarkdownDefinitionFromFileInputSchema | Zod schema for load runtime agent markdown definition from file input. | source |
mapRuntimeStreamEventToAgUiBrowserEvents | Deprecated compatibility alias for mapRuntimeStreamEventToAgUiEvents. | source |
normalizeAgUiBrowserRuntimeRequest | Deprecated compatibility alias for normalizeAgUiRuntimeRequest. | 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/identity
import {
isAgentCatalogAction,
isAgentCatalogKind,
isInstalledProjectAgentKind,
} from "veryfront/agent/identity";
Components
Functions
Types
| Name | Description | Source |
|---|---|---|
AgentCatalogAction | source | |
AgentCatalogKind | source | |
InstalledProjectAgentExecutionIdentity | source | |
InstalledProjectAgentRunSnapshot | source | |
ProjectAgentExecutionIdentity | source | |
ProjectAgentExecutionKind | source | |
ProjectAgentKind | source | |
ProjectAgentRunSnapshot | source | |
SourceProjectAgentExecutionIdentity | source | |
SourceProjectAgentRunSnapshot | source |