art-framework 0.4.7 → 0.4.10
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/README.md +1 -1
- package/dist/index.cjs +43 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +70 -2
- package/dist/index.d.ts +70 -2
- package/dist/index.js +43 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -477,6 +477,21 @@ interface PESAgentStateData {
|
|
|
477
477
|
toolCall: ParsedToolCall;
|
|
478
478
|
iterationState: ArtStandardPrompt;
|
|
479
479
|
};
|
|
480
|
+
stepOutputs?: Record<string, StepOutputEntry>;
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Structured entry for step output table.
|
|
484
|
+
* Persisted for resume capability and cross-step data access.
|
|
485
|
+
*/
|
|
486
|
+
interface StepOutputEntry {
|
|
487
|
+
stepId: string;
|
|
488
|
+
description: string;
|
|
489
|
+
stepType: 'tool' | 'reasoning';
|
|
490
|
+
status: TodoItemStatus;
|
|
491
|
+
completedAt?: number;
|
|
492
|
+
rawResult?: any;
|
|
493
|
+
toolResults?: ToolResult[];
|
|
494
|
+
summary?: string;
|
|
480
495
|
}
|
|
481
496
|
interface ExecutionOutput {
|
|
482
497
|
thoughts?: string;
|
|
@@ -1658,6 +1673,12 @@ interface AgentOptions {
|
|
|
1658
1673
|
* @property {Partial<AgentPersona>} [persona]
|
|
1659
1674
|
*/
|
|
1660
1675
|
persona?: Partial<AgentPersona>;
|
|
1676
|
+
/**
|
|
1677
|
+
* Optional: Configuration for execution phase behavior (TAEF parameters) for this specific call.
|
|
1678
|
+
* Overrides thread and instance-level execution config.
|
|
1679
|
+
* @property {ExecutionConfig} [executionConfig]
|
|
1680
|
+
*/
|
|
1681
|
+
executionConfig?: ExecutionConfig;
|
|
1661
1682
|
}
|
|
1662
1683
|
/**
|
|
1663
1684
|
* The final structured response returned by the agent core after processing.
|
|
@@ -2134,6 +2155,11 @@ interface ArtInstanceConfig {
|
|
|
2134
2155
|
* @property {AgentPersona} [persona]
|
|
2135
2156
|
*/
|
|
2136
2157
|
persona?: AgentPersona;
|
|
2158
|
+
/**
|
|
2159
|
+
* Optional: Configuration for execution phase behavior (TAEF parameters).
|
|
2160
|
+
* @property {ExecutionConfig} [execution]
|
|
2161
|
+
*/
|
|
2162
|
+
execution?: ExecutionConfig;
|
|
2137
2163
|
/**
|
|
2138
2164
|
* Optional configuration for MCP (Model Context Protocol) manager.
|
|
2139
2165
|
* Enables connection to external MCP servers for dynamic tool loading.
|
|
@@ -2585,6 +2611,40 @@ interface AgentPersona {
|
|
|
2585
2611
|
*/
|
|
2586
2612
|
prompts: StageSpecificPrompts;
|
|
2587
2613
|
}
|
|
2614
|
+
/**
|
|
2615
|
+
* Configuration options for the execution phase of the PES Agent.
|
|
2616
|
+
* Controls TAEF (Tool-Aware Execution Framework) behavior.
|
|
2617
|
+
*
|
|
2618
|
+
* @interface ExecutionConfig
|
|
2619
|
+
*/
|
|
2620
|
+
interface ExecutionConfig {
|
|
2621
|
+
/**
|
|
2622
|
+
* Maximum number of LLM iterations per todo item during execution.
|
|
2623
|
+
* Default: 5
|
|
2624
|
+
* @property {number} [maxIterations]
|
|
2625
|
+
*/
|
|
2626
|
+
maxIterations?: number;
|
|
2627
|
+
/**
|
|
2628
|
+
* Maximum number of TAEF tool validation retries when required tools are not invoked.
|
|
2629
|
+
* Default: 2
|
|
2630
|
+
* @property {number} [taefMaxRetries]
|
|
2631
|
+
*/
|
|
2632
|
+
taefMaxRetries?: number;
|
|
2633
|
+
/**
|
|
2634
|
+
* Maximum character length for tool result serialization in step context.
|
|
2635
|
+
* Higher values preserve more data for the LLM but increase token usage.
|
|
2636
|
+
* Default: 60000 (effectively no practical limit)
|
|
2637
|
+
* @property {number} [toolResultMaxLength]
|
|
2638
|
+
*/
|
|
2639
|
+
toolResultMaxLength?: number;
|
|
2640
|
+
/**
|
|
2641
|
+
* Whether to enable A2A (Agent-to-Agent) delegation during execution.
|
|
2642
|
+
* When true, injects the delegate_to_agent tool into execution context.
|
|
2643
|
+
* Default: false
|
|
2644
|
+
* @property {boolean} [enableA2ADelegation]
|
|
2645
|
+
*/
|
|
2646
|
+
enableA2ADelegation?: boolean;
|
|
2647
|
+
}
|
|
2588
2648
|
/**
|
|
2589
2649
|
* Defines stage-specific system prompts for planning and synthesis.
|
|
2590
2650
|
*
|
|
@@ -2603,6 +2663,13 @@ interface StageSpecificPrompts {
|
|
|
2603
2663
|
* @property {string} [synthesis]
|
|
2604
2664
|
*/
|
|
2605
2665
|
synthesis?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
* Custom system prompt template for tool execution steps.
|
|
2668
|
+
* If provided, overrides the default execution prompt.
|
|
2669
|
+
* Supports variable interpolation: ${item.description}, ${completedItemsContext}, etc.
|
|
2670
|
+
* @property {string} [execution]
|
|
2671
|
+
*/
|
|
2672
|
+
execution?: string;
|
|
2606
2673
|
}
|
|
2607
2674
|
|
|
2608
2675
|
/**
|
|
@@ -3884,6 +3951,7 @@ declare class PESAgent implements IAgentCore {
|
|
|
3884
3951
|
/**
|
|
3885
3952
|
* Builds execution prompt for TOOL-type steps.
|
|
3886
3953
|
* Emphasizes tool invocation and explicitly names required tools.
|
|
3954
|
+
* Includes Data Flow Directive to guide LLM in extracting data from previous results.
|
|
3887
3955
|
*/
|
|
3888
3956
|
private _buildToolStepPrompt;
|
|
3889
3957
|
/**
|
|
@@ -5418,6 +5486,6 @@ declare const generateUUID: () => string;
|
|
|
5418
5486
|
/**
|
|
5419
5487
|
* The current version of the ART Framework package.
|
|
5420
5488
|
*/
|
|
5421
|
-
declare const VERSION = "0.4.
|
|
5489
|
+
declare const VERSION = "0.4.10";
|
|
5422
5490
|
|
|
5423
|
-
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, AgentFactory, type AgentFinalResponse, type AgentOptions, type AgentPersona, type AgentProps, type AgentState, AnthropicAdapter, type AnthropicAdapterOptions, ApiKeyStrategy, ApiQueueTimeoutError, type ArtInstance, type ArtInstanceConfig, type ArtStandardMessage, type ArtStandardMessageRole, ArtStandardMessageSchema, type ArtStandardPrompt, ArtStandardPromptSchema, AuthManager, type AvailableProviderEntry, CalculatorTool, type CallOptions, type ConversationManager, type ConversationMessage, ConversationSocket, type CreateA2ATaskRequest, DeepSeekAdapter, type DeepSeekAdapterOptions, ErrorCode, type ExecutionContext, type ExecutionMetadata, type ExecutionOutput, type FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, GroqAdapter, type GroqAdapterOptions, type IA2ATaskRepository, type IAgentCore, type IAuthStrategy, type IConversationRepository, type IObservationRepository, type IProviderManager, type IStateRepository, type IToolExecutor, type ITypedSocket, InMemoryStorageAdapter, IndexedDBStorageAdapter, type JsonObjectSchema, type JsonSchema, type LLMMetadata, LLMStreamSocket, LocalInstanceBusyError, LocalProviderConflictError, LogLevel, Logger, type LoggerConfig, type ManagedAdapterAccessor, McpClientController, McpManager, type McpManagerConfig, McpProxyTool, type McpResource, type McpResourceTemplate, type McpServerConfig, type McpServerStatus, type McpToolDefinition, type MessageOptions, MessageRole, ModelCapability, type OAuthConfig, type Observation, type ObservationFilter, type ObservationManager, ObservationSocket, ObservationType, OllamaAdapter, type OllamaAdapterOptions, OpenAIAdapter, type OpenAIAdapterOptions, OpenRouterAdapter, type OpenRouterAdapterOptions, type OutputParser, PESAgent, type PESAgentStateData, type PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type ProviderAdapter, type ProviderManagerConfig, ProviderManagerImpl, type ReasoningEngine, type RuntimeProviderConfig, type StageSpecificPrompts, StateManager, type StateSavingStrategy, type StorageAdapter, type StreamEvent, type StreamEventTypeFilter, SupabaseStorageAdapter, type SystemPromptMergeStrategy, type SystemPromptOverride, type SystemPromptResolver, type SystemPromptSpec, type SystemPromptsRegistry, type TaskDelegationConfig, TaskDelegationService, type TaskStatusResponse, type ThreadConfig, type ThreadContext, type TodoItem, TodoItemStatus, ToolRegistry, type ToolResult, type ToolSchema, type ToolSystem, TypedSocket, UISystem, UnknownProviderError, type UnsubscribeFunction, type UpdateA2ATaskRequest, VERSION, type ZyntopiaOAuthConfig, ZyntopiaOAuthStrategy, createArtInstance, generateUUID };
|
|
5491
|
+
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, AgentFactory, type AgentFinalResponse, type AgentOptions, type AgentPersona, type AgentProps, type AgentState, AnthropicAdapter, type AnthropicAdapterOptions, ApiKeyStrategy, ApiQueueTimeoutError, type ArtInstance, type ArtInstanceConfig, type ArtStandardMessage, type ArtStandardMessageRole, ArtStandardMessageSchema, type ArtStandardPrompt, ArtStandardPromptSchema, AuthManager, type AvailableProviderEntry, CalculatorTool, type CallOptions, type ConversationManager, type ConversationMessage, ConversationSocket, type CreateA2ATaskRequest, DeepSeekAdapter, type DeepSeekAdapterOptions, ErrorCode, type ExecutionConfig, type ExecutionContext, type ExecutionMetadata, type ExecutionOutput, type FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, GroqAdapter, type GroqAdapterOptions, type IA2ATaskRepository, type IAgentCore, type IAuthStrategy, type IConversationRepository, type IObservationRepository, type IProviderManager, type IStateRepository, type IToolExecutor, type ITypedSocket, InMemoryStorageAdapter, IndexedDBStorageAdapter, type JsonObjectSchema, type JsonSchema, type LLMMetadata, LLMStreamSocket, LocalInstanceBusyError, LocalProviderConflictError, LogLevel, Logger, type LoggerConfig, type ManagedAdapterAccessor, McpClientController, McpManager, type McpManagerConfig, McpProxyTool, type McpResource, type McpResourceTemplate, type McpServerConfig, type McpServerStatus, type McpToolDefinition, type MessageOptions, MessageRole, ModelCapability, type OAuthConfig, type Observation, type ObservationFilter, type ObservationManager, ObservationSocket, ObservationType, OllamaAdapter, type OllamaAdapterOptions, OpenAIAdapter, type OpenAIAdapterOptions, OpenRouterAdapter, type OpenRouterAdapterOptions, type OutputParser, PESAgent, type PESAgentStateData, type PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type ProviderAdapter, type ProviderManagerConfig, ProviderManagerImpl, type ReasoningEngine, type RuntimeProviderConfig, type StageSpecificPrompts, StateManager, type StateSavingStrategy, type StepOutputEntry, type StorageAdapter, type StreamEvent, type StreamEventTypeFilter, SupabaseStorageAdapter, type SystemPromptMergeStrategy, type SystemPromptOverride, type SystemPromptResolver, type SystemPromptSpec, type SystemPromptsRegistry, type TaskDelegationConfig, TaskDelegationService, type TaskStatusResponse, type ThreadConfig, type ThreadContext, type TodoItem, TodoItemStatus, ToolRegistry, type ToolResult, type ToolSchema, type ToolSystem, TypedSocket, UISystem, UnknownProviderError, type UnsubscribeFunction, type UpdateA2ATaskRequest, VERSION, type ZyntopiaOAuthConfig, ZyntopiaOAuthStrategy, createArtInstance, generateUUID };
|
package/dist/index.d.ts
CHANGED
|
@@ -477,6 +477,21 @@ interface PESAgentStateData {
|
|
|
477
477
|
toolCall: ParsedToolCall;
|
|
478
478
|
iterationState: ArtStandardPrompt;
|
|
479
479
|
};
|
|
480
|
+
stepOutputs?: Record<string, StepOutputEntry>;
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Structured entry for step output table.
|
|
484
|
+
* Persisted for resume capability and cross-step data access.
|
|
485
|
+
*/
|
|
486
|
+
interface StepOutputEntry {
|
|
487
|
+
stepId: string;
|
|
488
|
+
description: string;
|
|
489
|
+
stepType: 'tool' | 'reasoning';
|
|
490
|
+
status: TodoItemStatus;
|
|
491
|
+
completedAt?: number;
|
|
492
|
+
rawResult?: any;
|
|
493
|
+
toolResults?: ToolResult[];
|
|
494
|
+
summary?: string;
|
|
480
495
|
}
|
|
481
496
|
interface ExecutionOutput {
|
|
482
497
|
thoughts?: string;
|
|
@@ -1658,6 +1673,12 @@ interface AgentOptions {
|
|
|
1658
1673
|
* @property {Partial<AgentPersona>} [persona]
|
|
1659
1674
|
*/
|
|
1660
1675
|
persona?: Partial<AgentPersona>;
|
|
1676
|
+
/**
|
|
1677
|
+
* Optional: Configuration for execution phase behavior (TAEF parameters) for this specific call.
|
|
1678
|
+
* Overrides thread and instance-level execution config.
|
|
1679
|
+
* @property {ExecutionConfig} [executionConfig]
|
|
1680
|
+
*/
|
|
1681
|
+
executionConfig?: ExecutionConfig;
|
|
1661
1682
|
}
|
|
1662
1683
|
/**
|
|
1663
1684
|
* The final structured response returned by the agent core after processing.
|
|
@@ -2134,6 +2155,11 @@ interface ArtInstanceConfig {
|
|
|
2134
2155
|
* @property {AgentPersona} [persona]
|
|
2135
2156
|
*/
|
|
2136
2157
|
persona?: AgentPersona;
|
|
2158
|
+
/**
|
|
2159
|
+
* Optional: Configuration for execution phase behavior (TAEF parameters).
|
|
2160
|
+
* @property {ExecutionConfig} [execution]
|
|
2161
|
+
*/
|
|
2162
|
+
execution?: ExecutionConfig;
|
|
2137
2163
|
/**
|
|
2138
2164
|
* Optional configuration for MCP (Model Context Protocol) manager.
|
|
2139
2165
|
* Enables connection to external MCP servers for dynamic tool loading.
|
|
@@ -2585,6 +2611,40 @@ interface AgentPersona {
|
|
|
2585
2611
|
*/
|
|
2586
2612
|
prompts: StageSpecificPrompts;
|
|
2587
2613
|
}
|
|
2614
|
+
/**
|
|
2615
|
+
* Configuration options for the execution phase of the PES Agent.
|
|
2616
|
+
* Controls TAEF (Tool-Aware Execution Framework) behavior.
|
|
2617
|
+
*
|
|
2618
|
+
* @interface ExecutionConfig
|
|
2619
|
+
*/
|
|
2620
|
+
interface ExecutionConfig {
|
|
2621
|
+
/**
|
|
2622
|
+
* Maximum number of LLM iterations per todo item during execution.
|
|
2623
|
+
* Default: 5
|
|
2624
|
+
* @property {number} [maxIterations]
|
|
2625
|
+
*/
|
|
2626
|
+
maxIterations?: number;
|
|
2627
|
+
/**
|
|
2628
|
+
* Maximum number of TAEF tool validation retries when required tools are not invoked.
|
|
2629
|
+
* Default: 2
|
|
2630
|
+
* @property {number} [taefMaxRetries]
|
|
2631
|
+
*/
|
|
2632
|
+
taefMaxRetries?: number;
|
|
2633
|
+
/**
|
|
2634
|
+
* Maximum character length for tool result serialization in step context.
|
|
2635
|
+
* Higher values preserve more data for the LLM but increase token usage.
|
|
2636
|
+
* Default: 60000 (effectively no practical limit)
|
|
2637
|
+
* @property {number} [toolResultMaxLength]
|
|
2638
|
+
*/
|
|
2639
|
+
toolResultMaxLength?: number;
|
|
2640
|
+
/**
|
|
2641
|
+
* Whether to enable A2A (Agent-to-Agent) delegation during execution.
|
|
2642
|
+
* When true, injects the delegate_to_agent tool into execution context.
|
|
2643
|
+
* Default: false
|
|
2644
|
+
* @property {boolean} [enableA2ADelegation]
|
|
2645
|
+
*/
|
|
2646
|
+
enableA2ADelegation?: boolean;
|
|
2647
|
+
}
|
|
2588
2648
|
/**
|
|
2589
2649
|
* Defines stage-specific system prompts for planning and synthesis.
|
|
2590
2650
|
*
|
|
@@ -2603,6 +2663,13 @@ interface StageSpecificPrompts {
|
|
|
2603
2663
|
* @property {string} [synthesis]
|
|
2604
2664
|
*/
|
|
2605
2665
|
synthesis?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
* Custom system prompt template for tool execution steps.
|
|
2668
|
+
* If provided, overrides the default execution prompt.
|
|
2669
|
+
* Supports variable interpolation: ${item.description}, ${completedItemsContext}, etc.
|
|
2670
|
+
* @property {string} [execution]
|
|
2671
|
+
*/
|
|
2672
|
+
execution?: string;
|
|
2606
2673
|
}
|
|
2607
2674
|
|
|
2608
2675
|
/**
|
|
@@ -3884,6 +3951,7 @@ declare class PESAgent implements IAgentCore {
|
|
|
3884
3951
|
/**
|
|
3885
3952
|
* Builds execution prompt for TOOL-type steps.
|
|
3886
3953
|
* Emphasizes tool invocation and explicitly names required tools.
|
|
3954
|
+
* Includes Data Flow Directive to guide LLM in extracting data from previous results.
|
|
3887
3955
|
*/
|
|
3888
3956
|
private _buildToolStepPrompt;
|
|
3889
3957
|
/**
|
|
@@ -5418,6 +5486,6 @@ declare const generateUUID: () => string;
|
|
|
5418
5486
|
/**
|
|
5419
5487
|
* The current version of the ART Framework package.
|
|
5420
5488
|
*/
|
|
5421
|
-
declare const VERSION = "0.4.
|
|
5489
|
+
declare const VERSION = "0.4.10";
|
|
5422
5490
|
|
|
5423
|
-
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, AgentFactory, type AgentFinalResponse, type AgentOptions, type AgentPersona, type AgentProps, type AgentState, AnthropicAdapter, type AnthropicAdapterOptions, ApiKeyStrategy, ApiQueueTimeoutError, type ArtInstance, type ArtInstanceConfig, type ArtStandardMessage, type ArtStandardMessageRole, ArtStandardMessageSchema, type ArtStandardPrompt, ArtStandardPromptSchema, AuthManager, type AvailableProviderEntry, CalculatorTool, type CallOptions, type ConversationManager, type ConversationMessage, ConversationSocket, type CreateA2ATaskRequest, DeepSeekAdapter, type DeepSeekAdapterOptions, ErrorCode, type ExecutionContext, type ExecutionMetadata, type ExecutionOutput, type FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, GroqAdapter, type GroqAdapterOptions, type IA2ATaskRepository, type IAgentCore, type IAuthStrategy, type IConversationRepository, type IObservationRepository, type IProviderManager, type IStateRepository, type IToolExecutor, type ITypedSocket, InMemoryStorageAdapter, IndexedDBStorageAdapter, type JsonObjectSchema, type JsonSchema, type LLMMetadata, LLMStreamSocket, LocalInstanceBusyError, LocalProviderConflictError, LogLevel, Logger, type LoggerConfig, type ManagedAdapterAccessor, McpClientController, McpManager, type McpManagerConfig, McpProxyTool, type McpResource, type McpResourceTemplate, type McpServerConfig, type McpServerStatus, type McpToolDefinition, type MessageOptions, MessageRole, ModelCapability, type OAuthConfig, type Observation, type ObservationFilter, type ObservationManager, ObservationSocket, ObservationType, OllamaAdapter, type OllamaAdapterOptions, OpenAIAdapter, type OpenAIAdapterOptions, OpenRouterAdapter, type OpenRouterAdapterOptions, type OutputParser, PESAgent, type PESAgentStateData, type PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type ProviderAdapter, type ProviderManagerConfig, ProviderManagerImpl, type ReasoningEngine, type RuntimeProviderConfig, type StageSpecificPrompts, StateManager, type StateSavingStrategy, type StorageAdapter, type StreamEvent, type StreamEventTypeFilter, SupabaseStorageAdapter, type SystemPromptMergeStrategy, type SystemPromptOverride, type SystemPromptResolver, type SystemPromptSpec, type SystemPromptsRegistry, type TaskDelegationConfig, TaskDelegationService, type TaskStatusResponse, type ThreadConfig, type ThreadContext, type TodoItem, TodoItemStatus, ToolRegistry, type ToolResult, type ToolSchema, type ToolSystem, TypedSocket, UISystem, UnknownProviderError, type UnsubscribeFunction, type UpdateA2ATaskRequest, VERSION, type ZyntopiaOAuthConfig, ZyntopiaOAuthStrategy, createArtInstance, generateUUID };
|
|
5491
|
+
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, AgentFactory, type AgentFinalResponse, type AgentOptions, type AgentPersona, type AgentProps, type AgentState, AnthropicAdapter, type AnthropicAdapterOptions, ApiKeyStrategy, ApiQueueTimeoutError, type ArtInstance, type ArtInstanceConfig, type ArtStandardMessage, type ArtStandardMessageRole, ArtStandardMessageSchema, type ArtStandardPrompt, ArtStandardPromptSchema, AuthManager, type AvailableProviderEntry, CalculatorTool, type CallOptions, type ConversationManager, type ConversationMessage, ConversationSocket, type CreateA2ATaskRequest, DeepSeekAdapter, type DeepSeekAdapterOptions, ErrorCode, type ExecutionConfig, type ExecutionContext, type ExecutionMetadata, type ExecutionOutput, type FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, GroqAdapter, type GroqAdapterOptions, type IA2ATaskRepository, type IAgentCore, type IAuthStrategy, type IConversationRepository, type IObservationRepository, type IProviderManager, type IStateRepository, type IToolExecutor, type ITypedSocket, InMemoryStorageAdapter, IndexedDBStorageAdapter, type JsonObjectSchema, type JsonSchema, type LLMMetadata, LLMStreamSocket, LocalInstanceBusyError, LocalProviderConflictError, LogLevel, Logger, type LoggerConfig, type ManagedAdapterAccessor, McpClientController, McpManager, type McpManagerConfig, McpProxyTool, type McpResource, type McpResourceTemplate, type McpServerConfig, type McpServerStatus, type McpToolDefinition, type MessageOptions, MessageRole, ModelCapability, type OAuthConfig, type Observation, type ObservationFilter, type ObservationManager, ObservationSocket, ObservationType, OllamaAdapter, type OllamaAdapterOptions, OpenAIAdapter, type OpenAIAdapterOptions, OpenRouterAdapter, type OpenRouterAdapterOptions, type OutputParser, PESAgent, type PESAgentStateData, type PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type ProviderAdapter, type ProviderManagerConfig, ProviderManagerImpl, type ReasoningEngine, type RuntimeProviderConfig, type StageSpecificPrompts, StateManager, type StateSavingStrategy, type StepOutputEntry, type StorageAdapter, type StreamEvent, type StreamEventTypeFilter, SupabaseStorageAdapter, type SystemPromptMergeStrategy, type SystemPromptOverride, type SystemPromptResolver, type SystemPromptSpec, type SystemPromptsRegistry, type TaskDelegationConfig, TaskDelegationService, type TaskStatusResponse, type ThreadConfig, type ThreadContext, type TodoItem, TodoItemStatus, ToolRegistry, type ToolResult, type ToolSchema, type ToolSystem, TypedSocket, UISystem, UnknownProviderError, type UnsubscribeFunction, type UpdateA2ATaskRequest, VERSION, type ZyntopiaOAuthConfig, ZyntopiaOAuthStrategy, createArtInstance, generateUUID };
|