@runtypelabs/sdk 1.9.0 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +192 -118
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +76 -4
- package/dist/index.d.ts +76 -4
- package/dist/index.js +192 -118
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3884,7 +3884,7 @@ declare class ClientTokensEndpoint {
|
|
|
3884
3884
|
/**
|
|
3885
3885
|
* Agent event types for streaming
|
|
3886
3886
|
*/
|
|
3887
|
-
type AgentEventType = 'agent_start' | 'agent_iteration_start' | 'agent_turn_start' | 'agent_turn_delta' | 'agent_turn_complete' | 'agent_tool_start' | 'agent_tool_delta' | 'agent_tool_complete' | 'agent_iteration_complete' | 'agent_reflection' | 'agent_complete' | 'agent_error' | 'agent_ping' | 'agent_await';
|
|
3887
|
+
type AgentEventType = 'agent_start' | 'agent_iteration_start' | 'agent_turn_start' | 'agent_turn_delta' | 'agent_turn_complete' | 'agent_tool_start' | 'agent_tool_delta' | 'agent_tool_input_delta' | 'agent_tool_input_complete' | 'agent_tool_complete' | 'agent_iteration_complete' | 'agent_reflection' | 'agent_complete' | 'agent_error' | 'agent_ping' | 'agent_await';
|
|
3888
3888
|
/**
|
|
3889
3889
|
* Base agent event with common fields
|
|
3890
3890
|
*/
|
|
@@ -3965,7 +3965,7 @@ interface AgentToolStartEvent extends BaseAgentEvent {
|
|
|
3965
3965
|
parameters?: Record<string, unknown>;
|
|
3966
3966
|
}
|
|
3967
3967
|
/**
|
|
3968
|
-
* Agent tool delta event
|
|
3968
|
+
* Agent tool delta event (reserved for future execution progress)
|
|
3969
3969
|
*/
|
|
3970
3970
|
interface AgentToolDeltaEvent extends BaseAgentEvent {
|
|
3971
3971
|
type: 'agent_tool_delta';
|
|
@@ -3973,6 +3973,46 @@ interface AgentToolDeltaEvent extends BaseAgentEvent {
|
|
|
3973
3973
|
toolCallId: string;
|
|
3974
3974
|
delta: string;
|
|
3975
3975
|
}
|
|
3976
|
+
/**
|
|
3977
|
+
* Agent tool input delta event — streamed input fragment
|
|
3978
|
+
*/
|
|
3979
|
+
interface AgentToolInputDeltaEvent extends BaseAgentEvent {
|
|
3980
|
+
type: 'agent_tool_input_delta';
|
|
3981
|
+
iteration: number;
|
|
3982
|
+
toolCallId: string;
|
|
3983
|
+
delta: string;
|
|
3984
|
+
}
|
|
3985
|
+
/**
|
|
3986
|
+
* Agent tool input delta event — streamed input fragment
|
|
3987
|
+
*/
|
|
3988
|
+
interface AgentToolInputDeltaEvent extends BaseAgentEvent {
|
|
3989
|
+
type: 'agent_tool_input_delta';
|
|
3990
|
+
iteration: number;
|
|
3991
|
+
toolCallId: string;
|
|
3992
|
+
delta: string;
|
|
3993
|
+
}
|
|
3994
|
+
/**
|
|
3995
|
+
* Agent tool input complete event — resolved parameters after streaming
|
|
3996
|
+
*/
|
|
3997
|
+
interface AgentToolInputCompleteEvent extends BaseAgentEvent {
|
|
3998
|
+
type: 'agent_tool_input_complete';
|
|
3999
|
+
iteration: number;
|
|
4000
|
+
toolCallId: string;
|
|
4001
|
+
toolName: string;
|
|
4002
|
+
parameters: Record<string, unknown>;
|
|
4003
|
+
hiddenParameterNames?: string[];
|
|
4004
|
+
}
|
|
4005
|
+
/**
|
|
4006
|
+
* Agent tool input complete event — resolved parameters after streaming
|
|
4007
|
+
*/
|
|
4008
|
+
interface AgentToolInputCompleteEvent extends BaseAgentEvent {
|
|
4009
|
+
type: 'agent_tool_input_complete';
|
|
4010
|
+
iteration: number;
|
|
4011
|
+
toolCallId: string;
|
|
4012
|
+
toolName: string;
|
|
4013
|
+
parameters: Record<string, unknown>;
|
|
4014
|
+
hiddenParameterNames?: string[];
|
|
4015
|
+
}
|
|
3976
4016
|
/**
|
|
3977
4017
|
* Agent tool complete event
|
|
3978
4018
|
*/
|
|
@@ -4060,10 +4100,34 @@ interface AgentPausedEvent extends BaseAgentEvent {
|
|
|
4060
4100
|
parameters?: Record<string, unknown>;
|
|
4061
4101
|
awaitedAt: string;
|
|
4062
4102
|
}
|
|
4103
|
+
/**
|
|
4104
|
+
* Synthetic SDK event fired when client-side local tool execution begins.
|
|
4105
|
+
*/
|
|
4106
|
+
interface LocalToolExecutionStartEvent {
|
|
4107
|
+
executionId: string;
|
|
4108
|
+
toolCallId: string;
|
|
4109
|
+
toolName: string;
|
|
4110
|
+
parameters: Record<string, unknown>;
|
|
4111
|
+
startedAt: string;
|
|
4112
|
+
}
|
|
4113
|
+
/**
|
|
4114
|
+
* Synthetic SDK event fired after local tool execution finishes and the resume
|
|
4115
|
+
* request has been accepted (or a forced completion is emitted instead).
|
|
4116
|
+
*/
|
|
4117
|
+
interface LocalToolExecutionCompleteEvent {
|
|
4118
|
+
executionId: string;
|
|
4119
|
+
toolCallId: string;
|
|
4120
|
+
toolName: string;
|
|
4121
|
+
parameters: Record<string, unknown>;
|
|
4122
|
+
result: unknown;
|
|
4123
|
+
success: boolean;
|
|
4124
|
+
completedAt: string;
|
|
4125
|
+
durationMs: number;
|
|
4126
|
+
}
|
|
4063
4127
|
/**
|
|
4064
4128
|
* Union of all agent event types
|
|
4065
4129
|
*/
|
|
4066
|
-
type AgentEvent = AgentStartEvent | AgentIterationStartEvent | AgentTurnStartEvent | AgentTurnDeltaEvent | AgentTurnCompleteEvent | AgentToolStartEvent | AgentToolDeltaEvent | AgentToolCompleteEvent | AgentIterationCompleteEvent | AgentReflectionEvent | AgentCompleteEvent | AgentErrorEvent | AgentPingEvent | AgentPausedEvent;
|
|
4130
|
+
type AgentEvent = AgentStartEvent | AgentIterationStartEvent | AgentTurnStartEvent | AgentTurnDeltaEvent | AgentTurnCompleteEvent | AgentToolStartEvent | AgentToolDeltaEvent | AgentToolInputDeltaEvent | AgentToolInputCompleteEvent | AgentToolCompleteEvent | AgentIterationCompleteEvent | AgentReflectionEvent | AgentCompleteEvent | AgentErrorEvent | AgentPingEvent | AgentPausedEvent;
|
|
4067
4131
|
/**
|
|
4068
4132
|
* Parsed SSE event with event type and data
|
|
4069
4133
|
*/
|
|
@@ -4082,11 +4146,15 @@ interface AgentStreamCallbacks {
|
|
|
4082
4146
|
onTurnComplete?: (event: AgentTurnCompleteEvent) => void;
|
|
4083
4147
|
onToolStart?: (event: AgentToolStartEvent) => void;
|
|
4084
4148
|
onToolDelta?: (event: AgentToolDeltaEvent) => void;
|
|
4149
|
+
onToolInputDelta?: (event: AgentToolInputDeltaEvent) => void;
|
|
4150
|
+
onToolInputComplete?: (event: AgentToolInputCompleteEvent) => void;
|
|
4085
4151
|
onToolComplete?: (event: AgentToolCompleteEvent) => void;
|
|
4086
4152
|
onIterationComplete?: (event: AgentIterationCompleteEvent) => void;
|
|
4087
4153
|
onReflection?: (event: AgentReflectionEvent) => void;
|
|
4088
4154
|
onAgentComplete?: (event: AgentCompleteEvent) => void;
|
|
4089
4155
|
onAgentPaused?: (event: AgentPausedEvent) => void;
|
|
4156
|
+
onLocalToolExecutionStart?: (event: LocalToolExecutionStartEvent) => void;
|
|
4157
|
+
onLocalToolExecutionComplete?: (event: LocalToolExecutionCompleteEvent) => void;
|
|
4090
4158
|
onError?: (event: AgentErrorEvent) => void;
|
|
4091
4159
|
onPing?: (event: AgentPingEvent) => void;
|
|
4092
4160
|
onUnknownEvent?: (event: ParsedSSEEvent) => void;
|
|
@@ -4149,6 +4217,8 @@ interface AgentExecuteRequest {
|
|
|
4149
4217
|
debugMode?: boolean;
|
|
4150
4218
|
/** Model ID to use for this session (overrides agent config) */
|
|
4151
4219
|
model?: string;
|
|
4220
|
+
/** Enable reasoning/thinking for models that support it (e.g. Gemini 3, o-series) */
|
|
4221
|
+
reasoning?: boolean;
|
|
4152
4222
|
/** Runtime tools to make available during execution */
|
|
4153
4223
|
tools?: {
|
|
4154
4224
|
runtimeTools?: AgentRuntimeToolDefinition[];
|
|
@@ -4407,6 +4477,8 @@ interface RunTaskOptions {
|
|
|
4407
4477
|
localTools?: Record<string, LocalToolDefinition>;
|
|
4408
4478
|
/** Model ID to use (overrides agent's configured model) */
|
|
4409
4479
|
model?: string;
|
|
4480
|
+
/** Enable reasoning/thinking for models that support it (e.g. Gemini 3, o-series) */
|
|
4481
|
+
reasoning?: boolean;
|
|
4410
4482
|
/** Previous messages from a prior run (for continuation/resume) */
|
|
4411
4483
|
previousMessages?: AgentMessage[];
|
|
4412
4484
|
/** New user message for continuation (appended after previous context) */
|
|
@@ -5321,4 +5393,4 @@ declare function getLikelySupportingCandidatePaths(bestCandidatePath: string | u
|
|
|
5321
5393
|
declare function getDefaultPlanPath(taskName: string): string;
|
|
5322
5394
|
declare function sanitizeTaskSlug(taskName: string): string;
|
|
5323
5395
|
|
|
5324
|
-
export { type Agent, type AgentCompleteEvent, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, AgentsEndpoint, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, ChatEndpoint, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientWidgetTheme, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateToolRequest, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, type DeploySandboxRequest, type DeploySandboxResponse, type DispatchClient, DispatchEndpoint, type DispatchEnvironment, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type ErrorHandlingMode, EvalBuilder, type EvalClient, EvalEndpoint, type EvalListParams, type EvalOptions, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunConfig, EvalRunner, type EvalStatus, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchGitHubStepConfig$1 as FetchGitHubStepConfig, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowErrorEvent, type FlowFallback, type FlowPausedEvent, FlowResult, type FlowStartEvent, type FlowStep, FlowStepsEndpoint, type FlowSummary, type FlowToolConfig, FlowsEndpoint, FlowsNamespace, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type ImageContentPart, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListConversationsResponse, type ListParams, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionLoopSnapshotSlice, type Message$1 as Message, type MessageContent, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptRunOptions, PromptRunner, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ReasoningConfig, type ReasoningValue, type RecordConfig$1 as RecordConfig, type RecordListParams, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContinuation, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchGitHubStepConfig as RuntypeFetchGitHubStepConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SendTextStepConfig as RuntypeSendTextStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, type SearchStepConfig$1 as SearchStepConfig, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SendTextStepConfig$1 as SendTextStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type StepChunkEvent, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamEvent, type TextContentPart, type Tool, type ToolConfig, type ToolExecution, type ToolsConfig, ToolsEndpoint, type TransformDataStepConfig$1 as TransformDataStepConfig, type UpdateClientTokenRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateToolRequest, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions$2 as UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowContext, type WorkflowDefinition, type WorkflowPhase, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildGeneratedRuntimeToolGateOutput, createClient, createExternalTool, defaultWorkflow, deployWorkflow, evaluateGeneratedRuntimeToolProposal, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, normalizeCandidatePath, parseFinalBuffer, parseSSEChunk, processStream, sanitizeTaskSlug, streamEvents };
|
|
5396
|
+
export { type Agent, type AgentCompleteEvent, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolInputCompleteEvent, type AgentToolInputDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, AgentsEndpoint, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, ChatEndpoint, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientWidgetTheme, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateToolRequest, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, type DeploySandboxRequest, type DeploySandboxResponse, type DispatchClient, DispatchEndpoint, type DispatchEnvironment, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type ErrorHandlingMode, EvalBuilder, type EvalClient, EvalEndpoint, type EvalListParams, type EvalOptions, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunConfig, EvalRunner, type EvalStatus, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchGitHubStepConfig$1 as FetchGitHubStepConfig, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowErrorEvent, type FlowFallback, type FlowPausedEvent, FlowResult, type FlowStartEvent, type FlowStep, FlowStepsEndpoint, type FlowSummary, type FlowToolConfig, FlowsEndpoint, FlowsNamespace, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type ImageContentPart, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListConversationsResponse, type ListParams, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionCompleteEvent, type LocalToolExecutionLoopSnapshotSlice, type LocalToolExecutionStartEvent, type Message$1 as Message, type MessageContent, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptRunOptions, PromptRunner, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ReasoningConfig, type ReasoningValue, type RecordConfig$1 as RecordConfig, type RecordListParams, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContinuation, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchGitHubStepConfig as RuntypeFetchGitHubStepConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SendTextStepConfig as RuntypeSendTextStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, type SearchStepConfig$1 as SearchStepConfig, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SendTextStepConfig$1 as SendTextStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type StepChunkEvent, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamEvent, type TextContentPart, type Tool, type ToolConfig, type ToolExecution, type ToolsConfig, ToolsEndpoint, type TransformDataStepConfig$1 as TransformDataStepConfig, type UpdateClientTokenRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateToolRequest, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions$2 as UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowContext, type WorkflowDefinition, type WorkflowPhase, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildGeneratedRuntimeToolGateOutput, createClient, createExternalTool, defaultWorkflow, deployWorkflow, evaluateGeneratedRuntimeToolProposal, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, normalizeCandidatePath, parseFinalBuffer, parseSSEChunk, processStream, sanitizeTaskSlug, streamEvents };
|
package/dist/index.d.ts
CHANGED
|
@@ -3884,7 +3884,7 @@ declare class ClientTokensEndpoint {
|
|
|
3884
3884
|
/**
|
|
3885
3885
|
* Agent event types for streaming
|
|
3886
3886
|
*/
|
|
3887
|
-
type AgentEventType = 'agent_start' | 'agent_iteration_start' | 'agent_turn_start' | 'agent_turn_delta' | 'agent_turn_complete' | 'agent_tool_start' | 'agent_tool_delta' | 'agent_tool_complete' | 'agent_iteration_complete' | 'agent_reflection' | 'agent_complete' | 'agent_error' | 'agent_ping' | 'agent_await';
|
|
3887
|
+
type AgentEventType = 'agent_start' | 'agent_iteration_start' | 'agent_turn_start' | 'agent_turn_delta' | 'agent_turn_complete' | 'agent_tool_start' | 'agent_tool_delta' | 'agent_tool_input_delta' | 'agent_tool_input_complete' | 'agent_tool_complete' | 'agent_iteration_complete' | 'agent_reflection' | 'agent_complete' | 'agent_error' | 'agent_ping' | 'agent_await';
|
|
3888
3888
|
/**
|
|
3889
3889
|
* Base agent event with common fields
|
|
3890
3890
|
*/
|
|
@@ -3965,7 +3965,7 @@ interface AgentToolStartEvent extends BaseAgentEvent {
|
|
|
3965
3965
|
parameters?: Record<string, unknown>;
|
|
3966
3966
|
}
|
|
3967
3967
|
/**
|
|
3968
|
-
* Agent tool delta event
|
|
3968
|
+
* Agent tool delta event (reserved for future execution progress)
|
|
3969
3969
|
*/
|
|
3970
3970
|
interface AgentToolDeltaEvent extends BaseAgentEvent {
|
|
3971
3971
|
type: 'agent_tool_delta';
|
|
@@ -3973,6 +3973,46 @@ interface AgentToolDeltaEvent extends BaseAgentEvent {
|
|
|
3973
3973
|
toolCallId: string;
|
|
3974
3974
|
delta: string;
|
|
3975
3975
|
}
|
|
3976
|
+
/**
|
|
3977
|
+
* Agent tool input delta event — streamed input fragment
|
|
3978
|
+
*/
|
|
3979
|
+
interface AgentToolInputDeltaEvent extends BaseAgentEvent {
|
|
3980
|
+
type: 'agent_tool_input_delta';
|
|
3981
|
+
iteration: number;
|
|
3982
|
+
toolCallId: string;
|
|
3983
|
+
delta: string;
|
|
3984
|
+
}
|
|
3985
|
+
/**
|
|
3986
|
+
* Agent tool input delta event — streamed input fragment
|
|
3987
|
+
*/
|
|
3988
|
+
interface AgentToolInputDeltaEvent extends BaseAgentEvent {
|
|
3989
|
+
type: 'agent_tool_input_delta';
|
|
3990
|
+
iteration: number;
|
|
3991
|
+
toolCallId: string;
|
|
3992
|
+
delta: string;
|
|
3993
|
+
}
|
|
3994
|
+
/**
|
|
3995
|
+
* Agent tool input complete event — resolved parameters after streaming
|
|
3996
|
+
*/
|
|
3997
|
+
interface AgentToolInputCompleteEvent extends BaseAgentEvent {
|
|
3998
|
+
type: 'agent_tool_input_complete';
|
|
3999
|
+
iteration: number;
|
|
4000
|
+
toolCallId: string;
|
|
4001
|
+
toolName: string;
|
|
4002
|
+
parameters: Record<string, unknown>;
|
|
4003
|
+
hiddenParameterNames?: string[];
|
|
4004
|
+
}
|
|
4005
|
+
/**
|
|
4006
|
+
* Agent tool input complete event — resolved parameters after streaming
|
|
4007
|
+
*/
|
|
4008
|
+
interface AgentToolInputCompleteEvent extends BaseAgentEvent {
|
|
4009
|
+
type: 'agent_tool_input_complete';
|
|
4010
|
+
iteration: number;
|
|
4011
|
+
toolCallId: string;
|
|
4012
|
+
toolName: string;
|
|
4013
|
+
parameters: Record<string, unknown>;
|
|
4014
|
+
hiddenParameterNames?: string[];
|
|
4015
|
+
}
|
|
3976
4016
|
/**
|
|
3977
4017
|
* Agent tool complete event
|
|
3978
4018
|
*/
|
|
@@ -4060,10 +4100,34 @@ interface AgentPausedEvent extends BaseAgentEvent {
|
|
|
4060
4100
|
parameters?: Record<string, unknown>;
|
|
4061
4101
|
awaitedAt: string;
|
|
4062
4102
|
}
|
|
4103
|
+
/**
|
|
4104
|
+
* Synthetic SDK event fired when client-side local tool execution begins.
|
|
4105
|
+
*/
|
|
4106
|
+
interface LocalToolExecutionStartEvent {
|
|
4107
|
+
executionId: string;
|
|
4108
|
+
toolCallId: string;
|
|
4109
|
+
toolName: string;
|
|
4110
|
+
parameters: Record<string, unknown>;
|
|
4111
|
+
startedAt: string;
|
|
4112
|
+
}
|
|
4113
|
+
/**
|
|
4114
|
+
* Synthetic SDK event fired after local tool execution finishes and the resume
|
|
4115
|
+
* request has been accepted (or a forced completion is emitted instead).
|
|
4116
|
+
*/
|
|
4117
|
+
interface LocalToolExecutionCompleteEvent {
|
|
4118
|
+
executionId: string;
|
|
4119
|
+
toolCallId: string;
|
|
4120
|
+
toolName: string;
|
|
4121
|
+
parameters: Record<string, unknown>;
|
|
4122
|
+
result: unknown;
|
|
4123
|
+
success: boolean;
|
|
4124
|
+
completedAt: string;
|
|
4125
|
+
durationMs: number;
|
|
4126
|
+
}
|
|
4063
4127
|
/**
|
|
4064
4128
|
* Union of all agent event types
|
|
4065
4129
|
*/
|
|
4066
|
-
type AgentEvent = AgentStartEvent | AgentIterationStartEvent | AgentTurnStartEvent | AgentTurnDeltaEvent | AgentTurnCompleteEvent | AgentToolStartEvent | AgentToolDeltaEvent | AgentToolCompleteEvent | AgentIterationCompleteEvent | AgentReflectionEvent | AgentCompleteEvent | AgentErrorEvent | AgentPingEvent | AgentPausedEvent;
|
|
4130
|
+
type AgentEvent = AgentStartEvent | AgentIterationStartEvent | AgentTurnStartEvent | AgentTurnDeltaEvent | AgentTurnCompleteEvent | AgentToolStartEvent | AgentToolDeltaEvent | AgentToolInputDeltaEvent | AgentToolInputCompleteEvent | AgentToolCompleteEvent | AgentIterationCompleteEvent | AgentReflectionEvent | AgentCompleteEvent | AgentErrorEvent | AgentPingEvent | AgentPausedEvent;
|
|
4067
4131
|
/**
|
|
4068
4132
|
* Parsed SSE event with event type and data
|
|
4069
4133
|
*/
|
|
@@ -4082,11 +4146,15 @@ interface AgentStreamCallbacks {
|
|
|
4082
4146
|
onTurnComplete?: (event: AgentTurnCompleteEvent) => void;
|
|
4083
4147
|
onToolStart?: (event: AgentToolStartEvent) => void;
|
|
4084
4148
|
onToolDelta?: (event: AgentToolDeltaEvent) => void;
|
|
4149
|
+
onToolInputDelta?: (event: AgentToolInputDeltaEvent) => void;
|
|
4150
|
+
onToolInputComplete?: (event: AgentToolInputCompleteEvent) => void;
|
|
4085
4151
|
onToolComplete?: (event: AgentToolCompleteEvent) => void;
|
|
4086
4152
|
onIterationComplete?: (event: AgentIterationCompleteEvent) => void;
|
|
4087
4153
|
onReflection?: (event: AgentReflectionEvent) => void;
|
|
4088
4154
|
onAgentComplete?: (event: AgentCompleteEvent) => void;
|
|
4089
4155
|
onAgentPaused?: (event: AgentPausedEvent) => void;
|
|
4156
|
+
onLocalToolExecutionStart?: (event: LocalToolExecutionStartEvent) => void;
|
|
4157
|
+
onLocalToolExecutionComplete?: (event: LocalToolExecutionCompleteEvent) => void;
|
|
4090
4158
|
onError?: (event: AgentErrorEvent) => void;
|
|
4091
4159
|
onPing?: (event: AgentPingEvent) => void;
|
|
4092
4160
|
onUnknownEvent?: (event: ParsedSSEEvent) => void;
|
|
@@ -4149,6 +4217,8 @@ interface AgentExecuteRequest {
|
|
|
4149
4217
|
debugMode?: boolean;
|
|
4150
4218
|
/** Model ID to use for this session (overrides agent config) */
|
|
4151
4219
|
model?: string;
|
|
4220
|
+
/** Enable reasoning/thinking for models that support it (e.g. Gemini 3, o-series) */
|
|
4221
|
+
reasoning?: boolean;
|
|
4152
4222
|
/** Runtime tools to make available during execution */
|
|
4153
4223
|
tools?: {
|
|
4154
4224
|
runtimeTools?: AgentRuntimeToolDefinition[];
|
|
@@ -4407,6 +4477,8 @@ interface RunTaskOptions {
|
|
|
4407
4477
|
localTools?: Record<string, LocalToolDefinition>;
|
|
4408
4478
|
/** Model ID to use (overrides agent's configured model) */
|
|
4409
4479
|
model?: string;
|
|
4480
|
+
/** Enable reasoning/thinking for models that support it (e.g. Gemini 3, o-series) */
|
|
4481
|
+
reasoning?: boolean;
|
|
4410
4482
|
/** Previous messages from a prior run (for continuation/resume) */
|
|
4411
4483
|
previousMessages?: AgentMessage[];
|
|
4412
4484
|
/** New user message for continuation (appended after previous context) */
|
|
@@ -5321,4 +5393,4 @@ declare function getLikelySupportingCandidatePaths(bestCandidatePath: string | u
|
|
|
5321
5393
|
declare function getDefaultPlanPath(taskName: string): string;
|
|
5322
5394
|
declare function sanitizeTaskSlug(taskName: string): string;
|
|
5323
5395
|
|
|
5324
|
-
export { type Agent, type AgentCompleteEvent, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, AgentsEndpoint, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, ChatEndpoint, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientWidgetTheme, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateToolRequest, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, type DeploySandboxRequest, type DeploySandboxResponse, type DispatchClient, DispatchEndpoint, type DispatchEnvironment, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type ErrorHandlingMode, EvalBuilder, type EvalClient, EvalEndpoint, type EvalListParams, type EvalOptions, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunConfig, EvalRunner, type EvalStatus, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchGitHubStepConfig$1 as FetchGitHubStepConfig, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowErrorEvent, type FlowFallback, type FlowPausedEvent, FlowResult, type FlowStartEvent, type FlowStep, FlowStepsEndpoint, type FlowSummary, type FlowToolConfig, FlowsEndpoint, FlowsNamespace, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type ImageContentPart, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListConversationsResponse, type ListParams, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionLoopSnapshotSlice, type Message$1 as Message, type MessageContent, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptRunOptions, PromptRunner, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ReasoningConfig, type ReasoningValue, type RecordConfig$1 as RecordConfig, type RecordListParams, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContinuation, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchGitHubStepConfig as RuntypeFetchGitHubStepConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SendTextStepConfig as RuntypeSendTextStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, type SearchStepConfig$1 as SearchStepConfig, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SendTextStepConfig$1 as SendTextStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type StepChunkEvent, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamEvent, type TextContentPart, type Tool, type ToolConfig, type ToolExecution, type ToolsConfig, ToolsEndpoint, type TransformDataStepConfig$1 as TransformDataStepConfig, type UpdateClientTokenRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateToolRequest, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions$2 as UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowContext, type WorkflowDefinition, type WorkflowPhase, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildGeneratedRuntimeToolGateOutput, createClient, createExternalTool, defaultWorkflow, deployWorkflow, evaluateGeneratedRuntimeToolProposal, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, normalizeCandidatePath, parseFinalBuffer, parseSSEChunk, processStream, sanitizeTaskSlug, streamEvents };
|
|
5396
|
+
export { type Agent, type AgentCompleteEvent, type AgentErrorEvent, type AgentEvent, type AgentEventType, type AgentExecuteRequest, type AgentExecuteResponse, type AgentIterationCompleteEvent, type AgentIterationStartEvent, type AgentMessage, type AgentPausedEvent, type AgentPingEvent, type AgentReflectionEvent, type AgentRuntimeToolDefinition, type AgentStartEvent, type AgentStreamCallbacks, type AgentToolCompleteEvent, type AgentToolDeltaEvent, type AgentToolInputCompleteEvent, type AgentToolInputDeltaEvent, type AgentToolStartEvent, type AgentTurnCompleteEvent, type AgentTurnDeltaEvent, type AgentTurnStartEvent, AgentsEndpoint, AnalyticsEndpoint, type ApiClient, type ApiKey, ApiKeysEndpoint, type ApiResponse, type ApplyGeneratedProposalOptions, type ApplyGeneratedProposalResult, type AttachRuntimeToolsOptions, type BaseAgentEvent, BatchBuilder, type BatchClient, type BatchListParams, type BatchOptions, type BatchRequest, type BatchResult, type BatchScheduleConfig, type BatchStatus, BatchesNamespace, type BuiltInTool, type BulkEditCondition, type BulkEditRequest, type BulkEditResponse, type BulkEditResult, ChatEndpoint, ClientBatchBuilder, type ClientConfig, type ClientConversation, ClientEvalBuilder, ClientFlowBuilder, type ClientToken, type ClientTokenConfig, type ClientTokenEnvironment, type ClientTokenVersionPin, ClientTokensEndpoint, type ClientWidgetTheme, type ConditionalStepConfig$1 as ConditionalStepConfig, type ContextErrorHandling, type ContextFallback, ContextTemplatesEndpoint, type CreateApiKeyRequest, type CreateClientTokenRequest, type CreateClientTokenResponse, type CreateFlowRequest, type CreateModelConfigRequest, type CreatePromptData, type CreatePromptRequest, type CreateProviderKeyRequest, type CreateRecordRequest, type CreateToolRequest, type CustomMCPServer, type CustomMCPServerAuth, type CustomToolConfig, type DeploySandboxRequest, type DeploySandboxResponse, type DispatchClient, DispatchEndpoint, type DispatchEnvironment, type DispatchOptions$1 as DispatchOptions, type DispatchRequest, type ErrorHandlingMode, EvalBuilder, type EvalClient, EvalEndpoint, type EvalListParams, type EvalOptions, type EvalRecord, type EvalRequest, type EvalResult, type EvalRunConfig, EvalRunner, type EvalStatus, EvalsNamespace, type ExecuteToolRequest, type ExecuteToolResponse, type ExternalToolConfig, type FallbackFailEvent, type FallbackStartEvent, type FallbackSuccessEvent, type FallbacksExhaustedEvent, type FallbacksInitiatedEvent, type FetchGitHubStepConfig$1 as FetchGitHubStepConfig, type FetchUrlStepConfig$1 as FetchUrlStepConfig, type FileContentPart, type Flow, type FlowAttachment, FlowBuilder, type FlowCompleteEvent, type FlowConfig$1 as FlowConfig, type FlowErrorEvent, type FlowFallback, type FlowPausedEvent, FlowResult, type FlowStartEvent, type FlowStep, FlowStepsEndpoint, type FlowSummary, type FlowToolConfig, FlowsEndpoint, FlowsNamespace, type GenerateEmbeddingStepConfig$1 as GenerateEmbeddingStepConfig, type GeneratedRuntimeToolGateDecision, type GeneratedRuntimeToolGateOptions, type ImageContentPart, type JSONSchema, type JsonArray, type JsonObject, type JsonPrimitive, type JsonValue, type ListConversationsResponse, type ListParams, type LocalToolConfig, type LocalToolDefinition, type LocalToolExecutionCompleteEvent, type LocalToolExecutionLoopSnapshotSlice, type LocalToolExecutionStartEvent, type Message$1 as Message, type MessageContent, type Metadata, type ModelConfig, ModelConfigsEndpoint, type ModelFallback, type ModelOverride, type ModelUsageDetail, type ModelUsageQueryParams, type ModelUsageResponse, type ModelUsageSummary, type ModelUsageTimeSeries, type PaginationResponse, type Prompt$1 as Prompt, type PromptErrorHandling, type PromptFallback, type PromptListParams, type PromptRunOptions, PromptRunner, type PromptStepConfig$1 as PromptStepConfig, PromptsEndpoint, PromptsNamespace, type ProviderApiKey, type ReasoningConfig, type ReasoningValue, type RecordConfig$1 as RecordConfig, type RecordListParams, RecordsEndpoint, type RetrieveRecordStepConfig$1 as RetrieveRecordStepConfig, type RetryFallback, type RunTaskContextBudgetBreakdown, type RunTaskContextCompactionEvent, type RunTaskContextCompactionStrategy, type RunTaskContextNoticeEvent, type RunTaskContinuation, type RunTaskOnContextCompaction, type RunTaskOnContextNotice, type RunTaskOnSession, type RunTaskOptions, type RunTaskResult, type RunTaskResumeState, type RunTaskSessionSummary, type RunTaskState, type RunTaskStateSlice, type RunTaskStatus, type RunTaskToolTraceSlice, type RuntimeCustomToolConfig, type RuntimeExternalToolConfig, type RuntimeFlowToolConfig, type RuntimeLocalToolConfig, type RuntimeTool, type RuntimeToolConfig, Runtype, RuntypeApiError, RuntypeClient, type ConditionalStepConfig as RuntypeConditionalStepConfig, type RuntypeConfig, type FetchGitHubStepConfig as RuntypeFetchGitHubStepConfig, type FetchUrlStepConfig as RuntypeFetchUrlStepConfig, RuntypeFlowBuilder, type FlowConfig as RuntypeFlowConfig, type GenerateEmbeddingStepConfig as RuntypeGenerateEmbeddingStepConfig, type Message as RuntypeMessage, type ModelOverride$1 as RuntypeModelOverride, type Prompt as RuntypePrompt, type PromptStepConfig as RuntypePromptStepConfig, type RuntypeRecord, type RecordConfig as RuntypeRecordConfig, type RetrieveRecordStepConfig as RuntypeRetrieveRecordStepConfig, type SearchStepConfig as RuntypeSearchStepConfig, type SendEmailStepConfig as RuntypeSendEmailStepConfig, type SendEventStepConfig as RuntypeSendEventStepConfig, type SendStreamStepConfig as RuntypeSendStreamStepConfig, type SendTextStepConfig as RuntypeSendTextStepConfig, type SetVariableStepConfig as RuntypeSetVariableStepConfig, type TransformDataStepConfig as RuntypeTransformDataStepConfig, type UpsertFlowConfig as RuntypeUpsertFlowConfig, type UpsertRecordStepConfig as RuntypeUpsertRecordStepConfig, type VectorSearchStepConfig as RuntypeVectorSearchStepConfig, type WaitUntilStepConfig as RuntypeWaitUntilStepConfig, type SearchStepConfig$1 as SearchStepConfig, type SendEmailStepConfig$1 as SendEmailStepConfig, type SendEventStepConfig$1 as SendEventStepConfig, type SendStreamStepConfig$1 as SendStreamStepConfig, type SendTextStepConfig$1 as SendTextStepConfig, type SetVariableStepConfig$1 as SetVariableStepConfig, type StepChunkEvent, type StepCompleteEvent, type StepDeltaEvent, type StepFallback, type StepStartEvent, type StepWaitingLocalEvent, type StreamCallbacks, type StreamEvent, type TextContentPart, type Tool, type ToolConfig, type ToolExecution, type ToolsConfig, ToolsEndpoint, type TransformDataStepConfig$1 as TransformDataStepConfig, type UpdateClientTokenRequest, type UpdatePromptData, type UpdateProviderKeyRequest, type UpdateToolRequest, type UpsertFlowConfig$1 as UpsertFlowConfig, type UpsertOptions$2 as UpsertOptions, type UpsertRecordStepConfig$1 as UpsertRecordStepConfig, type UserProfile, UsersEndpoint, type VectorSearchStepConfig$1 as VectorSearchStepConfig, type WaitUntilStepConfig$1 as WaitUntilStepConfig, type WorkflowContext, type WorkflowDefinition, type WorkflowPhase, applyGeneratedRuntimeToolProposalToDispatchRequest, attachRuntimeToolsToDispatchRequest, buildGeneratedRuntimeToolGateOutput, createClient, createExternalTool, defaultWorkflow, deployWorkflow, evaluateGeneratedRuntimeToolProposal, gameWorkflow, getDefaultPlanPath, getLikelySupportingCandidatePaths, isDiscoveryToolName, isMarathonArtifactPath, isPreservationSensitiveTask, normalizeCandidatePath, parseFinalBuffer, parseSSEChunk, processStream, sanitizeTaskSlug, streamEvents };
|