@voltagent/core 2.0.10 → 2.0.12
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.d.mts +83 -5
- package/dist/index.d.ts +83 -5
- package/dist/index.js +267 -50
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +267 -50
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1982,6 +1982,35 @@ type VoltOpsClientOptions = {
|
|
|
1982
1982
|
maxSize?: number;
|
|
1983
1983
|
};
|
|
1984
1984
|
};
|
|
1985
|
+
type VoltOpsFeedbackConfig = {
|
|
1986
|
+
type: "continuous" | "categorical" | "freeform";
|
|
1987
|
+
min?: number;
|
|
1988
|
+
max?: number;
|
|
1989
|
+
categories?: Array<{
|
|
1990
|
+
value: string | number;
|
|
1991
|
+
label?: string;
|
|
1992
|
+
description?: string;
|
|
1993
|
+
}>;
|
|
1994
|
+
[key: string]: any;
|
|
1995
|
+
};
|
|
1996
|
+
type VoltOpsFeedbackExpiresIn = {
|
|
1997
|
+
days?: number;
|
|
1998
|
+
hours?: number;
|
|
1999
|
+
minutes?: number;
|
|
2000
|
+
};
|
|
2001
|
+
type VoltOpsFeedbackToken = {
|
|
2002
|
+
id: string;
|
|
2003
|
+
url: string;
|
|
2004
|
+
expiresAt: string;
|
|
2005
|
+
feedbackConfig?: VoltOpsFeedbackConfig | null;
|
|
2006
|
+
};
|
|
2007
|
+
type VoltOpsFeedbackTokenCreateInput = {
|
|
2008
|
+
traceId: string;
|
|
2009
|
+
key: string;
|
|
2010
|
+
feedbackConfig?: VoltOpsFeedbackConfig | null;
|
|
2011
|
+
expiresAt?: Date | string;
|
|
2012
|
+
expiresIn?: VoltOpsFeedbackExpiresIn;
|
|
2013
|
+
};
|
|
1985
2014
|
/**
|
|
1986
2015
|
* Cached prompt data for performance optimization
|
|
1987
2016
|
*/
|
|
@@ -2657,6 +2686,8 @@ interface VoltOpsClient$1 {
|
|
|
2657
2686
|
actions: VoltOpsActionsApi;
|
|
2658
2687
|
/** Evaluations API surface */
|
|
2659
2688
|
evals: VoltOpsEvalsApi;
|
|
2689
|
+
/** Create a feedback token for the given trace */
|
|
2690
|
+
createFeedbackToken(input: VoltOpsFeedbackTokenCreateInput): Promise<VoltOpsFeedbackToken>;
|
|
2660
2691
|
/** Create a prompt helper for agent instructions */
|
|
2661
2692
|
createPromptHelper(agentId: string, historyEntryId?: string): PromptHelper;
|
|
2662
2693
|
/** List managed memory databases available to the project */
|
|
@@ -3073,6 +3104,7 @@ declare class VoltOpsClient implements VoltOpsClient$1 {
|
|
|
3073
3104
|
*/
|
|
3074
3105
|
getAuthHeaders(): Record<string, string>;
|
|
3075
3106
|
sendRequest(path: string, init?: RequestInit): Promise<Response>;
|
|
3107
|
+
createFeedbackToken(input: VoltOpsFeedbackTokenCreateInput): Promise<VoltOpsFeedbackToken>;
|
|
3076
3108
|
/**
|
|
3077
3109
|
* Get prompt manager for direct access
|
|
3078
3110
|
*/
|
|
@@ -4600,6 +4632,20 @@ interface ApiToolInfo {
|
|
|
4600
4632
|
description: string;
|
|
4601
4633
|
parameters?: any;
|
|
4602
4634
|
}
|
|
4635
|
+
type AgentFeedbackOptions = {
|
|
4636
|
+
key?: string;
|
|
4637
|
+
feedbackConfig?: VoltOpsFeedbackConfig | null;
|
|
4638
|
+
expiresAt?: Date | string;
|
|
4639
|
+
expiresIn?: VoltOpsFeedbackExpiresIn;
|
|
4640
|
+
};
|
|
4641
|
+
type AgentFeedbackMetadata = {
|
|
4642
|
+
traceId: string;
|
|
4643
|
+
key: string;
|
|
4644
|
+
url: string;
|
|
4645
|
+
tokenId?: string;
|
|
4646
|
+
expiresAt?: string;
|
|
4647
|
+
feedbackConfig?: VoltOpsFeedbackConfig | null;
|
|
4648
|
+
};
|
|
4603
4649
|
/**
|
|
4604
4650
|
* Tool with node_id for agent state
|
|
4605
4651
|
*/
|
|
@@ -4917,6 +4963,7 @@ type AgentOptions = {
|
|
|
4917
4963
|
temperature?: number;
|
|
4918
4964
|
maxOutputTokens?: number;
|
|
4919
4965
|
maxSteps?: number;
|
|
4966
|
+
feedback?: AgentFeedbackOptions | boolean;
|
|
4920
4967
|
/**
|
|
4921
4968
|
* Default stop condition for step execution (ai-sdk `stopWhen`).
|
|
4922
4969
|
* Per-call `stopWhen` in method options overrides this.
|
|
@@ -5105,6 +5152,8 @@ interface StreamTextFinishResult {
|
|
|
5105
5152
|
text: string;
|
|
5106
5153
|
/** Token usage information (if available). */
|
|
5107
5154
|
usage?: UsageInfo;
|
|
5155
|
+
/** Feedback metadata for the trace, if enabled. */
|
|
5156
|
+
feedback?: AgentFeedbackMetadata | null;
|
|
5108
5157
|
/** The reason the stream finished (if available, e.g., 'stop', 'length', 'tool-calls'). */
|
|
5109
5158
|
finishReason?: string;
|
|
5110
5159
|
/** The original completion response object from the provider (if available). */
|
|
@@ -5150,6 +5199,8 @@ interface StandardizedTextResult {
|
|
|
5150
5199
|
text: string;
|
|
5151
5200
|
/** Token usage information (if available). */
|
|
5152
5201
|
usage?: UsageInfo;
|
|
5202
|
+
/** Feedback metadata for the trace, if enabled. */
|
|
5203
|
+
feedback?: AgentFeedbackMetadata | null;
|
|
5153
5204
|
/** Original provider response (if needed). */
|
|
5154
5205
|
providerResponse?: unknown;
|
|
5155
5206
|
/** Finish reason (if available from provider). */
|
|
@@ -5378,6 +5429,7 @@ type StreamTextResultWithContext<TOOLS extends ToolSet = Record<string, any>, OU
|
|
|
5378
5429
|
pipeTextStreamToResponse: StreamTextResult<TOOLS, any>["pipeTextStreamToResponse"];
|
|
5379
5430
|
toTextStreamResponse: StreamTextResult<TOOLS, any>["toTextStreamResponse"];
|
|
5380
5431
|
context: Map<string | symbol, unknown>;
|
|
5432
|
+
feedback?: AgentFeedbackMetadata | null;
|
|
5381
5433
|
} & Record<never, OUTPUT>;
|
|
5382
5434
|
/**
|
|
5383
5435
|
* Extended StreamObjectResult that includes context
|
|
@@ -5404,6 +5456,7 @@ interface GenerateTextResultWithContext<TOOLS extends ToolSet = Record<string, a
|
|
|
5404
5456
|
context: Map<string | symbol, unknown>;
|
|
5405
5457
|
experimental_output: OutputValue<OUTPUT>;
|
|
5406
5458
|
output: OutputValue<OUTPUT>;
|
|
5459
|
+
feedback?: AgentFeedbackMetadata | null;
|
|
5407
5460
|
}
|
|
5408
5461
|
/**
|
|
5409
5462
|
* Extended GenerateObjectResult that includes context
|
|
@@ -5431,6 +5484,7 @@ interface BaseGenerationOptions extends Partial<CallSettings> {
|
|
|
5431
5484
|
mergeStrategy?: "prepend" | "append" | "interleave";
|
|
5432
5485
|
};
|
|
5433
5486
|
maxSteps?: number;
|
|
5487
|
+
feedback?: boolean | AgentFeedbackOptions;
|
|
5434
5488
|
/**
|
|
5435
5489
|
* Custom stop condition for ai-sdk step execution.
|
|
5436
5490
|
* When provided, this overrides VoltAgent's default `stepCountIs(maxSteps)`.
|
|
@@ -5496,6 +5550,7 @@ declare class Agent {
|
|
|
5496
5550
|
private readonly voltOpsClient?;
|
|
5497
5551
|
private readonly prompts?;
|
|
5498
5552
|
private readonly evalConfig?;
|
|
5553
|
+
private readonly feedbackOptions?;
|
|
5499
5554
|
private readonly inputGuardrails;
|
|
5500
5555
|
private readonly outputGuardrails;
|
|
5501
5556
|
private readonly observabilityAuthWarningState;
|
|
@@ -5558,6 +5613,10 @@ declare class Agent {
|
|
|
5558
5613
|
* but still work standalone with their own instance
|
|
5559
5614
|
*/
|
|
5560
5615
|
private getObservability;
|
|
5616
|
+
private resolveFeedbackOptions;
|
|
5617
|
+
private getFeedbackTraceId;
|
|
5618
|
+
private getFeedbackClient;
|
|
5619
|
+
private createFeedbackMetadata;
|
|
5561
5620
|
/**
|
|
5562
5621
|
* Check if semantic search is supported
|
|
5563
5622
|
*/
|
|
@@ -5630,9 +5689,10 @@ declare class Agent {
|
|
|
5630
5689
|
*/
|
|
5631
5690
|
private calculateMaxSteps;
|
|
5632
5691
|
/**
|
|
5633
|
-
* Get the model name
|
|
5692
|
+
* Get the model name.
|
|
5693
|
+
* Pass a resolved model to return its modelId (useful for dynamic models).
|
|
5634
5694
|
*/
|
|
5635
|
-
getModelName(): string;
|
|
5695
|
+
getModelName(model?: LanguageModel | string): string;
|
|
5636
5696
|
/**
|
|
5637
5697
|
* Get full agent state
|
|
5638
5698
|
*/
|
|
@@ -6763,6 +6823,7 @@ type ExtractExecuteResult<T> = T extends {
|
|
|
6763
6823
|
type AgentConfig$1<SCHEMA extends z.ZodTypeAny, INPUT, DATA> = BaseGenerationOptions & {
|
|
6764
6824
|
schema: SCHEMA | ((context: Omit<WorkflowExecuteContext<INPUT, DATA, any, any>, "suspend" | "writer">) => SCHEMA | Promise<SCHEMA>);
|
|
6765
6825
|
};
|
|
6826
|
+
type AgentResultMapper<INPUT, DATA, SCHEMA extends z.ZodTypeAny, RESULT> = (output: z.infer<SCHEMA>, context: WorkflowExecuteContext<INPUT, DATA, any, any>) => Promise<RESULT> | RESULT;
|
|
6766
6827
|
/**
|
|
6767
6828
|
* Creates an agent step for a workflow
|
|
6768
6829
|
*
|
|
@@ -6784,15 +6845,16 @@ type AgentConfig$1<SCHEMA extends z.ZodTypeAny, INPUT, DATA> = BaseGenerationOpt
|
|
|
6784
6845
|
* @param task - The task (prompt) to execute for the agent, can be a string or a function that returns a string
|
|
6785
6846
|
* @param agent - The agent to execute the task using `generateText`
|
|
6786
6847
|
* @param config - The config for the agent (schema) `generateText` call
|
|
6848
|
+
* @param map - Optional mapper to shape or merge the agent output with existing data
|
|
6787
6849
|
* @returns A workflow step that executes the agent with the task
|
|
6788
6850
|
*/
|
|
6789
|
-
declare function andAgent<INPUT, DATA, SCHEMA extends z.ZodTypeAny
|
|
6851
|
+
declare function andAgent<INPUT, DATA, SCHEMA extends z.ZodTypeAny, RESULT = z.infer<SCHEMA>>(task: UIMessage[] | ModelMessage[] | string | InternalWorkflowFunc<INPUT, DATA, UIMessage[] | ModelMessage[] | string, any, any>, agent: Agent, config: AgentConfig$1<SCHEMA, INPUT, DATA>, map?: AgentResultMapper<INPUT, DATA, SCHEMA, RESULT>): {
|
|
6790
6852
|
type: "agent";
|
|
6791
6853
|
id: string;
|
|
6792
6854
|
name: string;
|
|
6793
6855
|
purpose: string | null;
|
|
6794
6856
|
agent: Agent;
|
|
6795
|
-
execute: (context: WorkflowExecuteContext<INPUT, DATA, any, any>) => Promise<
|
|
6857
|
+
execute: (context: WorkflowExecuteContext<INPUT, DATA, any, any>) => Promise<RESULT>;
|
|
6796
6858
|
};
|
|
6797
6859
|
|
|
6798
6860
|
interface WorkflowStepAgent<INPUT, DATA, RESULT> extends InternalBaseWorkflowStep<INPUT, DATA, RESULT, any, any> {
|
|
@@ -7513,9 +7575,11 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7513
7575
|
* @param task - The task (prompt) to execute for the agent, can be a string or a function that returns a string
|
|
7514
7576
|
* @param agent - The agent to execute the task using `generateText`
|
|
7515
7577
|
* @param config - The config for the agent (schema) `generateText` call
|
|
7578
|
+
* @param map - Optional mapper to shape or merge the agent output with existing data
|
|
7516
7579
|
* @returns A workflow step that executes the agent with the task
|
|
7517
7580
|
*/
|
|
7518
7581
|
andAgent<SCHEMA extends z.ZodTypeAny>(task: string | UIMessage[] | ModelMessage[] | InternalWorkflowFunc<WorkflowInput<INPUT_SCHEMA>, CURRENT_DATA, string | UIMessage[] | ModelMessage[], any, any>, agent: Agent, config: AgentConfig<SCHEMA, INPUT_SCHEMA, CURRENT_DATA>): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, z.infer<SCHEMA>, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7582
|
+
andAgent<SCHEMA extends z.ZodTypeAny, NEW_DATA>(task: string | UIMessage[] | ModelMessage[] | InternalWorkflowFunc<WorkflowInput<INPUT_SCHEMA>, CURRENT_DATA, string | UIMessage[] | ModelMessage[], any, any>, agent: Agent, config: AgentConfig<SCHEMA, INPUT_SCHEMA, CURRENT_DATA>, map: (output: z.infer<SCHEMA>, context: WorkflowExecuteContext<WorkflowInput<INPUT_SCHEMA>, CURRENT_DATA, any, any>) => Promise<NEW_DATA> | NEW_DATA): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, NEW_DATA, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7519
7583
|
/**
|
|
7520
7584
|
* Add a function step to the workflow with both input and output schemas
|
|
7521
7585
|
* @param config - Step configuration with schemas
|
|
@@ -7532,12 +7596,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7532
7596
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7533
7597
|
suspend: (reason?: string, suspendData?: SS extends z.ZodTypeAny ? z.infer<SS> : z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7534
7598
|
resumeData?: RS extends z.ZodTypeAny ? z.infer<RS> : z.infer<RESUME_SCHEMA>;
|
|
7599
|
+
retryCount?: number;
|
|
7535
7600
|
logger: Logger;
|
|
7536
7601
|
writer: WorkflowStreamWriter;
|
|
7537
7602
|
}) => Promise<z.infer<OS>>;
|
|
7538
7603
|
id: string;
|
|
7539
7604
|
name?: string;
|
|
7540
7605
|
purpose?: string;
|
|
7606
|
+
retries?: number;
|
|
7541
7607
|
}): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, z.infer<OS>, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7542
7608
|
/**
|
|
7543
7609
|
* Add a function step to the workflow with only input schema
|
|
@@ -7555,12 +7621,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7555
7621
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7556
7622
|
suspend: (reason?: string, suspendData?: SS extends z.ZodTypeAny ? z.infer<SS> : z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7557
7623
|
resumeData?: RS extends z.ZodTypeAny ? z.infer<RS> : z.infer<RESUME_SCHEMA>;
|
|
7624
|
+
retryCount?: number;
|
|
7558
7625
|
logger: Logger;
|
|
7559
7626
|
writer: WorkflowStreamWriter;
|
|
7560
7627
|
}) => Promise<NEW_DATA>;
|
|
7561
7628
|
id: string;
|
|
7562
7629
|
name?: string;
|
|
7563
7630
|
purpose?: string;
|
|
7631
|
+
retries?: number;
|
|
7564
7632
|
}): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, NEW_DATA, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7565
7633
|
/**
|
|
7566
7634
|
* Add a function step to the workflow with only output schema
|
|
@@ -7578,12 +7646,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7578
7646
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7579
7647
|
suspend: (reason?: string, suspendData?: SS extends z.ZodTypeAny ? z.infer<SS> : z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7580
7648
|
resumeData?: RS extends z.ZodTypeAny ? z.infer<RS> : z.infer<RESUME_SCHEMA>;
|
|
7649
|
+
retryCount?: number;
|
|
7581
7650
|
logger: Logger;
|
|
7582
7651
|
writer: WorkflowStreamWriter;
|
|
7583
7652
|
}) => Promise<z.infer<OS>>;
|
|
7584
7653
|
id: string;
|
|
7585
7654
|
name?: string;
|
|
7586
7655
|
purpose?: string;
|
|
7656
|
+
retries?: number;
|
|
7587
7657
|
}): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, z.infer<OS>, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7588
7658
|
/**
|
|
7589
7659
|
* Add a function step to the workflow with only resumeSchema
|
|
@@ -7601,12 +7671,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7601
7671
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7602
7672
|
suspend: (reason?: string, suspendData?: SS extends z.ZodTypeAny ? z.infer<SS> : z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7603
7673
|
resumeData?: z.infer<RS>;
|
|
7674
|
+
retryCount?: number;
|
|
7604
7675
|
logger: Logger;
|
|
7605
7676
|
writer: WorkflowStreamWriter;
|
|
7606
7677
|
}) => Promise<NEW_DATA>;
|
|
7607
7678
|
id: string;
|
|
7608
7679
|
name?: string;
|
|
7609
7680
|
purpose?: string;
|
|
7681
|
+
retries?: number;
|
|
7610
7682
|
}): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, NEW_DATA, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7611
7683
|
/**
|
|
7612
7684
|
* Add a function step to the workflow
|
|
@@ -7640,12 +7712,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7640
7712
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7641
7713
|
suspend: (reason?: string, suspendData?: z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7642
7714
|
resumeData?: z.infer<RESUME_SCHEMA>;
|
|
7715
|
+
retryCount?: number;
|
|
7643
7716
|
logger: Logger;
|
|
7644
7717
|
writer: WorkflowStreamWriter;
|
|
7645
7718
|
}) => Promise<NEW_DATA>;
|
|
7646
7719
|
id: string;
|
|
7647
7720
|
name?: string;
|
|
7648
7721
|
purpose?: string;
|
|
7722
|
+
retries?: number;
|
|
7649
7723
|
inputSchema?: never;
|
|
7650
7724
|
outputSchema?: never;
|
|
7651
7725
|
suspendSchema?: z.ZodTypeAny;
|
|
@@ -7725,12 +7799,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7725
7799
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7726
7800
|
suspend: (reason?: string, suspendData?: SS extends z.ZodTypeAny ? z.infer<SS> : z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7727
7801
|
resumeData?: RS extends z.ZodTypeAny ? z.infer<RS> : z.infer<RESUME_SCHEMA>;
|
|
7802
|
+
retryCount?: number;
|
|
7728
7803
|
logger: Logger;
|
|
7729
7804
|
writer: WorkflowStreamWriter;
|
|
7730
7805
|
}) => Promise<void>;
|
|
7731
7806
|
id: string;
|
|
7732
7807
|
name?: string;
|
|
7733
7808
|
purpose?: string;
|
|
7809
|
+
retries?: number;
|
|
7734
7810
|
}): WorkflowChain<INPUT_SCHEMA, RESULT_SCHEMA, CURRENT_DATA, SUSPEND_SCHEMA, RESUME_SCHEMA>;
|
|
7735
7811
|
/**
|
|
7736
7812
|
* Add a tap step to the workflow
|
|
@@ -7763,12 +7839,14 @@ declare class WorkflowChain<INPUT_SCHEMA extends InternalBaseWorkflowInputSchema
|
|
|
7763
7839
|
getStepData: (stepId: string) => WorkflowStepData | undefined;
|
|
7764
7840
|
suspend: (reason?: string, suspendData?: z.infer<SUSPEND_SCHEMA>) => Promise<never>;
|
|
7765
7841
|
resumeData?: z.infer<RESUME_SCHEMA>;
|
|
7842
|
+
retryCount?: number;
|
|
7766
7843
|
logger: Logger;
|
|
7767
7844
|
writer: WorkflowStreamWriter;
|
|
7768
7845
|
}) => Promise<void>;
|
|
7769
7846
|
id: string;
|
|
7770
7847
|
name?: string;
|
|
7771
7848
|
purpose?: string;
|
|
7849
|
+
retries?: number;
|
|
7772
7850
|
inputSchema?: never;
|
|
7773
7851
|
suspendSchema?: z.ZodTypeAny;
|
|
7774
7852
|
resumeSchema?: z.ZodTypeAny;
|
|
@@ -11801,4 +11879,4 @@ declare class VoltAgent {
|
|
|
11801
11879
|
*/
|
|
11802
11880
|
declare function convertUsage(usage: LanguageModelUsage | undefined): UsageInfo | undefined;
|
|
11803
11881
|
|
|
11804
|
-
export { A2AServerRegistry, AbortError, Agent, type AgentEvalConfig, type AgentEvalContext, type AgentEvalOperationType, type AgentEvalPayload, type AgentEvalResult, type AgentEvalSamplingPolicy, type AgentEvalScorerConfig, type AgentEvalScorerFactory, type AgentEvalScorerReference, type AgentFullState, type AgentHookOnEnd, type AgentHookOnError, type AgentHookOnHandoff, type AgentHookOnHandoffComplete, type AgentHookOnPrepareMessages, type AgentHookOnPrepareModelMessages, type AgentHookOnStart, type AgentHookOnStepFinish, type AgentHookOnToolEnd, type AgentHookOnToolStart, type AgentHooks, type AgentOptions, AgentRegistry, type AgentResponse, type AgentScorerState, type AgentStatus, type AgentSummarizationOptions, type AgentTool, AiSdkEmbeddingAdapter, type AllowedVariableValue, type ApiToolInfo, type BaseEventMetadata, type BaseGenerationOptions, type BaseLLMOptions, type BaseMessage, BaseRetriever, type BaseTool, type BaseToolCall, type BuildScorerOptions, type BuildScorerRunArgs, type BuildScorerRunResult, type BuilderAnalyzeContext, type BuilderPrepareContext, type BuilderReasonContext, type BuilderScoreContext, type CachedPrompt, type ChatMessage, ClientHTTPError, type ClientSideToolResult, type CloudflareFetchHandler, CompositeFilesystemBackend, type Conversation, ConversationAlreadyExistsError, ConversationNotFoundError, type ConversationQueryOptions, type ConversationQueryOptions as ConversationQueryOptionsV2, type ConversationStepRecord, type ConversationStepType, ConversationTodoBackend, type Conversation as ConversationV2, type CreateConversationInput, type CreateConversationInput as CreateConversationInputV2, type CreateInputGuardrailOptions, type CreateOutputGuardrailOptions, type CreateReasoningToolsOptions, type CreateScorerOptions, DEFAULT_INSTRUCTIONS, type DataContent, type Document, type DynamicValue, type DynamicValueOptions, EDIT_FILE_TOOL_DESCRIPTION, type EditResult, type EmbeddingAdapter$1 as EmbeddingAdapter, EmbeddingAdapterNotConfiguredError, EmbeddingError, type ExtractVariableNames, FEW_SHOT_EXAMPLES, FILESYSTEM_SYSTEM_PROMPT, type FileData, type FileInfo, type FilesystemBackend, type FilesystemBackendContext, type FilesystemBackendFactory, type FilesystemToolkitOptions, GLOB_TOOL_DESCRIPTION, GREP_TOOL_DESCRIPTION, type GenerateObjectOptions, type GenerateObjectResultWithContext, type GenerateObjectSubAgentConfig, type GenerateReasonResult, type GenerateScoreResult, type GenerateScoreStep, type GenerateTextOptions, type GenerateTextResultWithContext, type GenerateTextSubAgentConfig, type GetConversationStepsOptions, type GetMessagesOptions, type GrepMatch, type GuardrailAction, type GuardrailContext, type GuardrailDefinition, type GuardrailFunction, type GuardrailSeverity, type IServerProvider, type IServerlessProvider, type VoltOpsClient$1 as IVoltOpsClient, InMemoryFilesystemBackend, InMemoryStorageAdapter$1 as InMemoryObservabilityAdapter, InMemoryStorageAdapter, InMemoryVectorAdapter, type InferGenerateObjectResponse, type InferGenerateTextResponse, type InferMessage, type InferModel, type InferProviderParams, type InferStreamResponse, type InferTool, type InputGuardrail, type InputGuardrailArgs, type InputGuardrailResult, type KnowledgeBaseTagFilter, type LLMProvider, LS_TOOL_DESCRIPTION, LazyRemoteExportProcessor, type LocalScorerDefinition, type LocalScorerExecutionResult, LocalStorageSpanProcessor, type LogFilter, LoggerProxy, type MCPAuthorizationAction, type MCPAuthorizationConfig, type MCPAuthorizationContext, MCPAuthorizationError, type MCPCanFunction, type MCPCanParams, type MCPCanResult, MCPClient, type MCPClientCallOptions, type MCPClientConfig, MCPConfiguration, type MCPConfigurationOptions, type MCPElicitationAdapter, type MCPElicitationHandler, type MCPLoggingAdapter, type MCPPromptsAdapter, type MCPResourcesAdapter, MCPServerRegistry, type ManagedMemoryAddMessageInput, type ManagedMemoryAddMessagesInput, type ManagedMemoryClearMessagesInput, type ManagedMemoryConnectionInfo, type ManagedMemoryConversationsClient, type ManagedMemoryCredentialCreateResult, type ManagedMemoryCredentialListResult, type ManagedMemoryCredentialSummary, type ManagedMemoryDatabaseSummary, type ManagedMemoryGetMessagesInput, type ManagedMemoryMessagesClient, type ManagedMemoryQueryWorkflowRunsInput, type ManagedMemorySetWorkingMemoryInput, type ManagedMemoryStatus, type ManagedMemoryUpdateConversationInput, type ManagedMemoryVoltOpsClient, type ManagedMemoryWorkflowStateUpdateInput, type ManagedMemoryWorkflowStatesClient, type ManagedMemoryWorkingMemoryClient, type ManagedMemoryWorkingMemoryInput, Memory, type MemoryConfig, type MemoryOptions, type MemoryStorageMetadata, type MemoryUpdateMode, Memory as MemoryV2, MemoryV2Error, type MessageContent, MessageContentBuilder, type MessageRole, type ModelToolCall, NextAction, NodeFilesystemBackend, NodeType, VoltAgentObservability$1 as NodeVoltAgentObservability, type ObservabilityConfig, type ObservabilityLogRecord, type ObservabilitySpan, type ObservabilityStorageAdapter, type ObservabilityWebSocketEvent, type OnEndHookArgs, type OnErrorHookArgs, type OnHandoffCompleteHookArgs, type OnHandoffHookArgs, type OnPrepareMessagesHookArgs, type OnPrepareMessagesHookResult, type OnPrepareModelMessagesHookArgs, type OnPrepareModelMessagesHookResult, type OnStartHookArgs, type OnStepFinishHookArgs, type OnToolEndHookArgs, type OnToolStartHookArgs, type OperationContext, type OutputGuardrail, type OutputGuardrailArgs, type OutputGuardrailResult, type OutputSpec, type PackageUpdateInfo, PlanAgent, type PlanAgentExtension, type PlanAgentExtensionContext, type PlanAgentExtensionResult, type PlanAgentFileData, type PlanAgentOptions, type PlanAgentState, type PlanAgentSubagentDefinition, type PlanAgentTodoItem, type PlanAgentTodoStatus, type PlanningToolkitOptions, type PromptApiClient, type PromptApiResponse, type PromptContent, type PromptCreator, type PromptHelper, type PromptReference, type PromptTemplate, type ProviderObjectResponse, type ProviderObjectStreamResponse, type ProviderParams, type ProviderResponse, type ProviderTextResponse, type ProviderTextStreamResponse, type ProviderTool, READ_FILE_TOOL_DESCRIPTION, type RagKnowledgeBaseSummary, type RagSearchKnowledgeBaseChildChunk, type RagSearchKnowledgeBaseRequest, type RagSearchKnowledgeBaseResponse, type RagSearchKnowledgeBaseResult, type ReadableStreamType, type ReasoningStep, ReasoningStepSchema, type RegisterOptions, type RegisteredTrigger, type RegisteredWorkflow, type RemoteLogExportConfig, RemoteLogProcessor, type ResumableStreamAdapter, type ResumableStreamContext, type RetrieveOptions, type Retriever, type RetrieverOptions, type RunLocalScorersArgs, type RunLocalScorersResult, SERVERLESS_ENV_CONTEXT_KEY, type SamplingMetadata, type SamplingPolicy, type ScorerBuilder, type ScorerContext, type ScorerLifecycleScope, type ScorerPipelineContext, type ScorerReasonContext, type ScorerResult, type SearchOptions, type SearchResult, type ServerAgentResponse, type ServerApiResponse, type ServerProviderDeps, type ServerProviderFactory, type ServerWorkflowResponse, type ServerlessProviderFactory, type ServerlessRemoteEndpointConfig, type ServerlessRemoteExportConfig, type ServerlessRequestHandler, ServerlessVoltAgentObservability, type SpanAttributes, type SpanEvent, type SpanFilterConfig, SpanFilterProcessor, SpanKind, type SpanLink, type SpanStatus, SpanStatusCode, type SpanTreeNode, type StepChunkCallback, type StepFinishCallback, type StepWithContent, type StopWhen, type StorageAdapter, StorageError, StorageLogProcessor, type StoredUIMessage, type StreamObjectFinishResult, type StreamObjectOnFinishCallback, type StreamObjectOptions, type StreamObjectResultWithContext, type StreamObjectSubAgentConfig, type StreamPart, type StreamTextFinishResult, type StreamTextOnFinishCallback, type StreamTextOptions, type StreamTextResultWithContext, type StreamTextSubAgentConfig, type SubAgentConfig, type SubAgentMethod, type SubAgentStateData, type SupervisorConfig, TRIGGER_CONTEXT_KEY, type TaskToolOptions, type TemplateVariables, type TimelineEventCoreLevel, type TimelineEventCoreStatus, type TimelineEventCoreType, type TodoBackend, type TodoBackendFactory, Tool, type ToolCall, type ToolContext, ToolDeniedError, type ToolErrorInfo, type ToolExecuteOptions, ToolManager, type ToolOptions, type ToolResultOutput, type ToolSchema, type ToolStatus, type ToolStatusInfo, type ToolWithNodeId, type Toolkit, type TriggerHandler, type TriggerHandlerBody, type TriggerHandlerContext, type TriggerHandlerResponse, type TriggerHandlerResult, type TriggerHandlerReturn, type TriggerHttpMethod, TriggerRegistry, type Usage, type UsageInfo, UserInputBridge, type UserInputHandler, type VectorAdapter, VectorAdapterNotConfiguredError, VectorError, type VectorItem, type VectorSearchOptions, type Voice, type VoiceEventData, type VoiceEventType, type VoiceMetadata, type VoiceOptions, VoltAgent, VoltAgentError, VoltAgentObservability, type VoltAgentOptions, VoltAgentRagRetriever, type VoltAgentRagRetrieverOptions, type VoltAgentStreamTextResult, type VoltAgentTextStreamPart, type VoltAgentTriggerConfig, type VoltAgentTriggersConfig, type VoltOpsActionExecutionResult, type VoltOpsActionsApi, VoltOpsActionsClient, type VoltOpsActionsTransport, type VoltOpsAirtableCreateRecordParams, type VoltOpsAirtableCredential, type VoltOpsAirtableDeleteRecordParams, type VoltOpsAirtableGetRecordParams, type VoltOpsAirtableListRecordsParams, type VoltOpsAirtableUpdateRecordParams, type VoltOpsAppendEvalRunResultPayload, type VoltOpsAppendEvalRunResultsRequest, VoltOpsClient, type VoltOpsClientOptions, type VoltOpsCompleteEvalRunRequest, type VoltOpsCreateEvalRunRequest, type VoltOpsCreateScorerRequest, type VoltOpsDiscordChannelMessageParams, type VoltOpsDiscordChannelType, type VoltOpsDiscordConfig, type VoltOpsDiscordCreateChannelParams, type VoltOpsDiscordCredential, type VoltOpsDiscordDeleteChannelParams, type VoltOpsDiscordGetChannelParams, type VoltOpsDiscordListChannelsParams, type VoltOpsDiscordListMembersParams, type VoltOpsDiscordListMessagesParams, type VoltOpsDiscordMemberRoleParams, type VoltOpsDiscordReactionParams, type VoltOpsDiscordSendMessageParams, type VoltOpsDiscordSendWebhookMessageParams, type VoltOpsDiscordUpdateChannelParams, type VoltOpsEvalResultStatus, type VoltOpsEvalRunCompletionSummaryPayload, type VoltOpsEvalRunErrorPayload, type VoltOpsEvalRunResultLiveMetadata, type VoltOpsEvalRunResultScorePayload, type VoltOpsEvalRunStatus, type VoltOpsEvalRunSummary, VoltOpsPromptApiClient, type VoltOpsPromptManager, VoltOpsPromptManagerImpl, type VoltOpsScorerSummary, type VoltOpsSlackCredential, type VoltOpsSlackDeleteMessageParams, type VoltOpsSlackPostMessageParams, type VoltOpsSlackSearchMessagesParams, type VoltOpsTerminalEvalRunStatus, type VoltOpsTriggerDefinition, VoltOpsTriggerDefinitions, type VoltOpsTriggerEnvelope, type VoltOpsTriggerGroupMap, type VoltOpsTriggerName, VoltOpsTriggerNames, WRITE_FILE_TOOL_DESCRIPTION, WRITE_TODOS_TOOL_DESCRIPTION, WRITE_TODOS_TOOL_NAME, WebSocketEventEmitter, WebSocketLogProcessor, WebSocketSpanProcessor, type WeightedBlendComponent, type WeightedBlendOptions, type Workflow, type WorkflowConfig, type WorkflowExecutionContext, WorkflowRegistry, type WorkflowRunQuery, type WorkflowStateEntry, type WorkflowStats, type WorkflowStepContext, type WorkflowStepType, type WorkflowTimelineEvent, type WorkingMemoryConfig, type WorkingMemoryScope, type WorkingMemorySummary, type WorkingMemoryUpdateOptions, type WriteResult, addTimestampToMessage, andAgent, andAll, andBranch, andDoUntil, andDoWhile, andForEach, andGuardrail, andMap, andRace, andSleep, andSleepUntil, andTap, andThen, andWhen, andWorkflow, appendToMessage, buildRetrieverLogMessage, buildSamplingMetadata, buildScorer, buildSpanTree, checkForUpdates, convertUsage, cosineSimilarity, createDefaultInputSafetyGuardrails, createDefaultPIIGuardrails, createDefaultSafetyGuardrails, createEmailRedactorGuardrail, createFilesystemToolkit, createHTMLSanitizerInputGuardrail, createHooks, createInputGuardrail, createInputLengthGuardrail, createMaxLengthGuardrail, createNodeId, createOutputGuardrail, createPIIInputGuardrail, createPhoneNumberGuardrail, createPlanningToolkit, createProfanityGuardrail, createProfanityInputGuardrail, createPrompt, createPromptInjectionGuardrail, createReasoningTools, createRetrieverTool, createScorer, createSensitiveNumberGuardrail, createSimpleTemplateEngine, createSubagent, createSuspendController, createTool, createToolResultEvictor, createToolkit, createTriggers, createVoltAgentObservability, createVoltOpsClient, createWorkflow, createWorkflowChain, createWorkflowStepNodeId, VoltAgent as default, defineVoltOpsTrigger, extractFileParts, extractImageParts, extractText, extractTextParts, extractWorkflowStepInfo, filterContentParts, getContentLength, getEnvVar, getGlobalLogBuffer, getGlobalLogger, getGlobalVoltOpsClient, getNodeTypeFromNodeId, getVoltOpsTriggerDefinition, getWorkflowStepNodeType, hasContent, hasFilePart, hasImagePart, hasTextPart, isAbortError, isNodeRuntime, isServerlessRuntime, isStructuredContent, isTextContent, isVoltAgentError, mapMessageContent, messageHelpers, normalizeContent, normalizeScorerResult, normalizeToArray, prependToMessage, readableLogRecordToObservabilityLog, readableSpanToObservabilitySpan, runLocalScorers, safeJsonParse, serializeValueForDebug, setWaitUntil, shouldSample, tool, transformTextContent, updateAllPackages, updateSinglePackage, weightedBlend, zodSchemaToJsonUI };
|
|
11882
|
+
export { A2AServerRegistry, AbortError, Agent, type AgentEvalConfig, type AgentEvalContext, type AgentEvalOperationType, type AgentEvalPayload, type AgentEvalResult, type AgentEvalSamplingPolicy, type AgentEvalScorerConfig, type AgentEvalScorerFactory, type AgentEvalScorerReference, type AgentFeedbackMetadata, type AgentFeedbackOptions, type AgentFullState, type AgentHookOnEnd, type AgentHookOnError, type AgentHookOnHandoff, type AgentHookOnHandoffComplete, type AgentHookOnPrepareMessages, type AgentHookOnPrepareModelMessages, type AgentHookOnStart, type AgentHookOnStepFinish, type AgentHookOnToolEnd, type AgentHookOnToolStart, type AgentHooks, type AgentOptions, AgentRegistry, type AgentResponse, type AgentScorerState, type AgentStatus, type AgentSummarizationOptions, type AgentTool, AiSdkEmbeddingAdapter, type AllowedVariableValue, type ApiToolInfo, type BaseEventMetadata, type BaseGenerationOptions, type BaseLLMOptions, type BaseMessage, BaseRetriever, type BaseTool, type BaseToolCall, type BuildScorerOptions, type BuildScorerRunArgs, type BuildScorerRunResult, type BuilderAnalyzeContext, type BuilderPrepareContext, type BuilderReasonContext, type BuilderScoreContext, type CachedPrompt, type ChatMessage, ClientHTTPError, type ClientSideToolResult, type CloudflareFetchHandler, CompositeFilesystemBackend, type Conversation, ConversationAlreadyExistsError, ConversationNotFoundError, type ConversationQueryOptions, type ConversationQueryOptions as ConversationQueryOptionsV2, type ConversationStepRecord, type ConversationStepType, ConversationTodoBackend, type Conversation as ConversationV2, type CreateConversationInput, type CreateConversationInput as CreateConversationInputV2, type CreateInputGuardrailOptions, type CreateOutputGuardrailOptions, type CreateReasoningToolsOptions, type CreateScorerOptions, DEFAULT_INSTRUCTIONS, type DataContent, type Document, type DynamicValue, type DynamicValueOptions, EDIT_FILE_TOOL_DESCRIPTION, type EditResult, type EmbeddingAdapter$1 as EmbeddingAdapter, EmbeddingAdapterNotConfiguredError, EmbeddingError, type ExtractVariableNames, FEW_SHOT_EXAMPLES, FILESYSTEM_SYSTEM_PROMPT, type FileData, type FileInfo, type FilesystemBackend, type FilesystemBackendContext, type FilesystemBackendFactory, type FilesystemToolkitOptions, GLOB_TOOL_DESCRIPTION, GREP_TOOL_DESCRIPTION, type GenerateObjectOptions, type GenerateObjectResultWithContext, type GenerateObjectSubAgentConfig, type GenerateReasonResult, type GenerateScoreResult, type GenerateScoreStep, type GenerateTextOptions, type GenerateTextResultWithContext, type GenerateTextSubAgentConfig, type GetConversationStepsOptions, type GetMessagesOptions, type GrepMatch, type GuardrailAction, type GuardrailContext, type GuardrailDefinition, type GuardrailFunction, type GuardrailSeverity, type IServerProvider, type IServerlessProvider, type VoltOpsClient$1 as IVoltOpsClient, InMemoryFilesystemBackend, InMemoryStorageAdapter$1 as InMemoryObservabilityAdapter, InMemoryStorageAdapter, InMemoryVectorAdapter, type InferGenerateObjectResponse, type InferGenerateTextResponse, type InferMessage, type InferModel, type InferProviderParams, type InferStreamResponse, type InferTool, type InputGuardrail, type InputGuardrailArgs, type InputGuardrailResult, type KnowledgeBaseTagFilter, type LLMProvider, LS_TOOL_DESCRIPTION, LazyRemoteExportProcessor, type LocalScorerDefinition, type LocalScorerExecutionResult, LocalStorageSpanProcessor, type LogFilter, LoggerProxy, type MCPAuthorizationAction, type MCPAuthorizationConfig, type MCPAuthorizationContext, MCPAuthorizationError, type MCPCanFunction, type MCPCanParams, type MCPCanResult, MCPClient, type MCPClientCallOptions, type MCPClientConfig, MCPConfiguration, type MCPConfigurationOptions, type MCPElicitationAdapter, type MCPElicitationHandler, type MCPLoggingAdapter, type MCPPromptsAdapter, type MCPResourcesAdapter, MCPServerRegistry, type ManagedMemoryAddMessageInput, type ManagedMemoryAddMessagesInput, type ManagedMemoryClearMessagesInput, type ManagedMemoryConnectionInfo, type ManagedMemoryConversationsClient, type ManagedMemoryCredentialCreateResult, type ManagedMemoryCredentialListResult, type ManagedMemoryCredentialSummary, type ManagedMemoryDatabaseSummary, type ManagedMemoryGetMessagesInput, type ManagedMemoryMessagesClient, type ManagedMemoryQueryWorkflowRunsInput, type ManagedMemorySetWorkingMemoryInput, type ManagedMemoryStatus, type ManagedMemoryUpdateConversationInput, type ManagedMemoryVoltOpsClient, type ManagedMemoryWorkflowStateUpdateInput, type ManagedMemoryWorkflowStatesClient, type ManagedMemoryWorkingMemoryClient, type ManagedMemoryWorkingMemoryInput, Memory, type MemoryConfig, type MemoryOptions, type MemoryStorageMetadata, type MemoryUpdateMode, Memory as MemoryV2, MemoryV2Error, type MessageContent, MessageContentBuilder, type MessageRole, type ModelToolCall, NextAction, NodeFilesystemBackend, NodeType, VoltAgentObservability$1 as NodeVoltAgentObservability, type ObservabilityConfig, type ObservabilityLogRecord, type ObservabilitySpan, type ObservabilityStorageAdapter, type ObservabilityWebSocketEvent, type OnEndHookArgs, type OnErrorHookArgs, type OnHandoffCompleteHookArgs, type OnHandoffHookArgs, type OnPrepareMessagesHookArgs, type OnPrepareMessagesHookResult, type OnPrepareModelMessagesHookArgs, type OnPrepareModelMessagesHookResult, type OnStartHookArgs, type OnStepFinishHookArgs, type OnToolEndHookArgs, type OnToolStartHookArgs, type OperationContext, type OutputGuardrail, type OutputGuardrailArgs, type OutputGuardrailResult, type OutputSpec, type PackageUpdateInfo, PlanAgent, type PlanAgentExtension, type PlanAgentExtensionContext, type PlanAgentExtensionResult, type PlanAgentFileData, type PlanAgentOptions, type PlanAgentState, type PlanAgentSubagentDefinition, type PlanAgentTodoItem, type PlanAgentTodoStatus, type PlanningToolkitOptions, type PromptApiClient, type PromptApiResponse, type PromptContent, type PromptCreator, type PromptHelper, type PromptReference, type PromptTemplate, type ProviderObjectResponse, type ProviderObjectStreamResponse, type ProviderParams, type ProviderResponse, type ProviderTextResponse, type ProviderTextStreamResponse, type ProviderTool, READ_FILE_TOOL_DESCRIPTION, type RagKnowledgeBaseSummary, type RagSearchKnowledgeBaseChildChunk, type RagSearchKnowledgeBaseRequest, type RagSearchKnowledgeBaseResponse, type RagSearchKnowledgeBaseResult, type ReadableStreamType, type ReasoningStep, ReasoningStepSchema, type RegisterOptions, type RegisteredTrigger, type RegisteredWorkflow, type RemoteLogExportConfig, RemoteLogProcessor, type ResumableStreamAdapter, type ResumableStreamContext, type RetrieveOptions, type Retriever, type RetrieverOptions, type RunLocalScorersArgs, type RunLocalScorersResult, SERVERLESS_ENV_CONTEXT_KEY, type SamplingMetadata, type SamplingPolicy, type ScorerBuilder, type ScorerContext, type ScorerLifecycleScope, type ScorerPipelineContext, type ScorerReasonContext, type ScorerResult, type SearchOptions, type SearchResult, type ServerAgentResponse, type ServerApiResponse, type ServerProviderDeps, type ServerProviderFactory, type ServerWorkflowResponse, type ServerlessProviderFactory, type ServerlessRemoteEndpointConfig, type ServerlessRemoteExportConfig, type ServerlessRequestHandler, ServerlessVoltAgentObservability, type SpanAttributes, type SpanEvent, type SpanFilterConfig, SpanFilterProcessor, SpanKind, type SpanLink, type SpanStatus, SpanStatusCode, type SpanTreeNode, type StepChunkCallback, type StepFinishCallback, type StepWithContent, type StopWhen, type StorageAdapter, StorageError, StorageLogProcessor, type StoredUIMessage, type StreamObjectFinishResult, type StreamObjectOnFinishCallback, type StreamObjectOptions, type StreamObjectResultWithContext, type StreamObjectSubAgentConfig, type StreamPart, type StreamTextFinishResult, type StreamTextOnFinishCallback, type StreamTextOptions, type StreamTextResultWithContext, type StreamTextSubAgentConfig, type SubAgentConfig, type SubAgentMethod, type SubAgentStateData, type SupervisorConfig, TRIGGER_CONTEXT_KEY, type TaskToolOptions, type TemplateVariables, type TimelineEventCoreLevel, type TimelineEventCoreStatus, type TimelineEventCoreType, type TodoBackend, type TodoBackendFactory, Tool, type ToolCall, type ToolContext, ToolDeniedError, type ToolErrorInfo, type ToolExecuteOptions, ToolManager, type ToolOptions, type ToolResultOutput, type ToolSchema, type ToolStatus, type ToolStatusInfo, type ToolWithNodeId, type Toolkit, type TriggerHandler, type TriggerHandlerBody, type TriggerHandlerContext, type TriggerHandlerResponse, type TriggerHandlerResult, type TriggerHandlerReturn, type TriggerHttpMethod, TriggerRegistry, type Usage, type UsageInfo, UserInputBridge, type UserInputHandler, type VectorAdapter, VectorAdapterNotConfiguredError, VectorError, type VectorItem, type VectorSearchOptions, type Voice, type VoiceEventData, type VoiceEventType, type VoiceMetadata, type VoiceOptions, VoltAgent, VoltAgentError, VoltAgentObservability, type VoltAgentOptions, VoltAgentRagRetriever, type VoltAgentRagRetrieverOptions, type VoltAgentStreamTextResult, type VoltAgentTextStreamPart, type VoltAgentTriggerConfig, type VoltAgentTriggersConfig, type VoltOpsActionExecutionResult, type VoltOpsActionsApi, VoltOpsActionsClient, type VoltOpsActionsTransport, type VoltOpsAirtableCreateRecordParams, type VoltOpsAirtableCredential, type VoltOpsAirtableDeleteRecordParams, type VoltOpsAirtableGetRecordParams, type VoltOpsAirtableListRecordsParams, type VoltOpsAirtableUpdateRecordParams, type VoltOpsAppendEvalRunResultPayload, type VoltOpsAppendEvalRunResultsRequest, VoltOpsClient, type VoltOpsClientOptions, type VoltOpsCompleteEvalRunRequest, type VoltOpsCreateEvalRunRequest, type VoltOpsCreateScorerRequest, type VoltOpsDiscordChannelMessageParams, type VoltOpsDiscordChannelType, type VoltOpsDiscordConfig, type VoltOpsDiscordCreateChannelParams, type VoltOpsDiscordCredential, type VoltOpsDiscordDeleteChannelParams, type VoltOpsDiscordGetChannelParams, type VoltOpsDiscordListChannelsParams, type VoltOpsDiscordListMembersParams, type VoltOpsDiscordListMessagesParams, type VoltOpsDiscordMemberRoleParams, type VoltOpsDiscordReactionParams, type VoltOpsDiscordSendMessageParams, type VoltOpsDiscordSendWebhookMessageParams, type VoltOpsDiscordUpdateChannelParams, type VoltOpsEvalResultStatus, type VoltOpsEvalRunCompletionSummaryPayload, type VoltOpsEvalRunErrorPayload, type VoltOpsEvalRunResultLiveMetadata, type VoltOpsEvalRunResultScorePayload, type VoltOpsEvalRunStatus, type VoltOpsEvalRunSummary, type VoltOpsFeedbackConfig, type VoltOpsFeedbackExpiresIn, type VoltOpsFeedbackToken, type VoltOpsFeedbackTokenCreateInput, VoltOpsPromptApiClient, type VoltOpsPromptManager, VoltOpsPromptManagerImpl, type VoltOpsScorerSummary, type VoltOpsSlackCredential, type VoltOpsSlackDeleteMessageParams, type VoltOpsSlackPostMessageParams, type VoltOpsSlackSearchMessagesParams, type VoltOpsTerminalEvalRunStatus, type VoltOpsTriggerDefinition, VoltOpsTriggerDefinitions, type VoltOpsTriggerEnvelope, type VoltOpsTriggerGroupMap, type VoltOpsTriggerName, VoltOpsTriggerNames, WRITE_FILE_TOOL_DESCRIPTION, WRITE_TODOS_TOOL_DESCRIPTION, WRITE_TODOS_TOOL_NAME, WebSocketEventEmitter, WebSocketLogProcessor, WebSocketSpanProcessor, type WeightedBlendComponent, type WeightedBlendOptions, type Workflow, type WorkflowConfig, type WorkflowExecutionContext, WorkflowRegistry, type WorkflowRunQuery, type WorkflowStateEntry, type WorkflowStats, type WorkflowStepContext, type WorkflowStepType, type WorkflowTimelineEvent, type WorkingMemoryConfig, type WorkingMemoryScope, type WorkingMemorySummary, type WorkingMemoryUpdateOptions, type WriteResult, addTimestampToMessage, andAgent, andAll, andBranch, andDoUntil, andDoWhile, andForEach, andGuardrail, andMap, andRace, andSleep, andSleepUntil, andTap, andThen, andWhen, andWorkflow, appendToMessage, buildRetrieverLogMessage, buildSamplingMetadata, buildScorer, buildSpanTree, checkForUpdates, convertUsage, cosineSimilarity, createDefaultInputSafetyGuardrails, createDefaultPIIGuardrails, createDefaultSafetyGuardrails, createEmailRedactorGuardrail, createFilesystemToolkit, createHTMLSanitizerInputGuardrail, createHooks, createInputGuardrail, createInputLengthGuardrail, createMaxLengthGuardrail, createNodeId, createOutputGuardrail, createPIIInputGuardrail, createPhoneNumberGuardrail, createPlanningToolkit, createProfanityGuardrail, createProfanityInputGuardrail, createPrompt, createPromptInjectionGuardrail, createReasoningTools, createRetrieverTool, createScorer, createSensitiveNumberGuardrail, createSimpleTemplateEngine, createSubagent, createSuspendController, createTool, createToolResultEvictor, createToolkit, createTriggers, createVoltAgentObservability, createVoltOpsClient, createWorkflow, createWorkflowChain, createWorkflowStepNodeId, VoltAgent as default, defineVoltOpsTrigger, extractFileParts, extractImageParts, extractText, extractTextParts, extractWorkflowStepInfo, filterContentParts, getContentLength, getEnvVar, getGlobalLogBuffer, getGlobalLogger, getGlobalVoltOpsClient, getNodeTypeFromNodeId, getVoltOpsTriggerDefinition, getWorkflowStepNodeType, hasContent, hasFilePart, hasImagePart, hasTextPart, isAbortError, isNodeRuntime, isServerlessRuntime, isStructuredContent, isTextContent, isVoltAgentError, mapMessageContent, messageHelpers, normalizeContent, normalizeScorerResult, normalizeToArray, prependToMessage, readableLogRecordToObservabilityLog, readableSpanToObservabilitySpan, runLocalScorers, safeJsonParse, serializeValueForDebug, setWaitUntil, shouldSample, tool, transformTextContent, updateAllPackages, updateSinglePackage, weightedBlend, zodSchemaToJsonUI };
|