art-framework 0.3.8 → 0.3.9
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 +4 -1
- package/dist/index.cjs +51 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -57
- package/dist/index.d.ts +8 -57
- package/dist/index.js +51 -60
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/dist/index.d.cts
CHANGED
|
@@ -2787,41 +2787,6 @@ interface ReasoningEngine {
|
|
|
2787
2787
|
*/
|
|
2788
2788
|
call(prompt: FormattedPrompt, options: CallOptions): Promise<AsyncIterable<StreamEvent>>;
|
|
2789
2789
|
}
|
|
2790
|
-
/**
|
|
2791
|
-
* Interface for the stateless prompt assembler.
|
|
2792
|
-
* Uses a blueprint (template) and context provided by Agent Logic
|
|
2793
|
-
* to create a standardized prompt format (`ArtStandardPrompt`).
|
|
2794
|
-
*/
|
|
2795
|
-
interface PromptManager {
|
|
2796
|
-
/**
|
|
2797
|
-
* Retrieves a named prompt fragment (e.g., a piece of instruction text).
|
|
2798
|
-
* Optionally allows for simple variable substitution if the fragment is a basic template.
|
|
2799
|
-
*
|
|
2800
|
-
* @param name - The unique identifier for the fragment.
|
|
2801
|
-
* @param context - Optional data for simple variable substitution within the fragment.
|
|
2802
|
-
* @returns The processed prompt fragment string.
|
|
2803
|
-
* @throws {ARTError} If the fragment is not found.
|
|
2804
|
-
*/
|
|
2805
|
-
getFragment(name: string, context?: Record<string, any>): string;
|
|
2806
|
-
/**
|
|
2807
|
-
* Validates a constructed prompt object against the standard schema.
|
|
2808
|
-
*
|
|
2809
|
-
* @param prompt - The ArtStandardPrompt object constructed by the agent.
|
|
2810
|
-
* @returns The validated prompt object (potentially after normalization if the schema does that).
|
|
2811
|
-
* @throws {ZodError} If validation fails (can be caught and wrapped in ARTError).
|
|
2812
|
-
*/
|
|
2813
|
-
validatePrompt(prompt: ArtStandardPrompt): ArtStandardPrompt;
|
|
2814
|
-
/**
|
|
2815
|
-
* Assembles a prompt using a Mustache template (blueprint) and context data.
|
|
2816
|
-
* Renders the template with the provided context and parses the result as an ArtStandardPrompt.
|
|
2817
|
-
*
|
|
2818
|
-
* @param blueprint - The Mustache template containing the prompt structure.
|
|
2819
|
-
* @param context - The context data to inject into the template.
|
|
2820
|
-
* @returns A promise resolving to the assembled ArtStandardPrompt.
|
|
2821
|
-
* @throws {ARTError} If template rendering or JSON parsing fails.
|
|
2822
|
-
*/
|
|
2823
|
-
assemblePrompt(blueprint: PromptBlueprint, context: PromptContext): Promise<ArtStandardPrompt>;
|
|
2824
|
-
}
|
|
2825
2790
|
/**
|
|
2826
2791
|
* Resolves the final system prompt from base + instance/thread/call overrides
|
|
2827
2792
|
* using tag+variables and merge strategies.
|
|
@@ -3691,11 +3656,6 @@ declare class TaskDelegationService {
|
|
|
3691
3656
|
interface PESAgentDependencies {
|
|
3692
3657
|
/** Manages thread configuration and state. */
|
|
3693
3658
|
stateManager: StateManager$1;
|
|
3694
|
-
/**
|
|
3695
|
-
* Optional default system prompt string provided at the ART instance level.
|
|
3696
|
-
* This serves as a custom prompt part if no thread-specific or call-specific
|
|
3697
|
-
* system prompt is provided. It's appended to the agent's base system prompt.
|
|
3698
|
-
*/
|
|
3699
3659
|
/** Manages conversation history. */
|
|
3700
3660
|
conversationManager: ConversationManager;
|
|
3701
3661
|
/** Registry for available tools. */
|
|
@@ -3730,11 +3690,6 @@ interface PESAgentDependencies {
|
|
|
3730
3690
|
*
|
|
3731
3691
|
* It constructs standardized prompts (`ArtStandardPrompt`) directly as JavaScript objects
|
|
3732
3692
|
* for the `ReasoningEngine`. It processes the `StreamEvent` output from the reasoning engine for both planning and synthesis.
|
|
3733
|
-
*
|
|
3734
|
-
* // @see {PromptManager} // Removed
|
|
3735
|
-
* @see {ReasoningEngine}
|
|
3736
|
-
* @see {ArtStandardPrompt}
|
|
3737
|
-
* @see {StreamEvent}
|
|
3738
3693
|
*/
|
|
3739
3694
|
declare class PESAgent implements IAgentCore {
|
|
3740
3695
|
private readonly deps;
|
|
@@ -3750,11 +3705,13 @@ declare class PESAgent implements IAgentCore {
|
|
|
3750
3705
|
* **Workflow:**
|
|
3751
3706
|
* 1. **Initiation & Config:** Loads thread configuration and resolves system prompt
|
|
3752
3707
|
* 2. **Data Gathering:** Gathers history, available tools
|
|
3753
|
-
* 3. **
|
|
3754
|
-
*
|
|
3755
|
-
*
|
|
3756
|
-
*
|
|
3757
|
-
*
|
|
3708
|
+
* 3. **Loop (ReAct-like):**
|
|
3709
|
+
* - **Planning:** LLM call for planning and parsing (with access to history of previous steps).
|
|
3710
|
+
* - **A2A Discovery & Delegation:** Identifies and delegates A2A tasks.
|
|
3711
|
+
* - **Tool Execution:** Executes identified local tool calls.
|
|
3712
|
+
* - **Observation:** Results are fed back into the next iteration.
|
|
3713
|
+
* 4. **Synthesis:** LLM call for final response generation including all results
|
|
3714
|
+
* 5. **Finalization:** Saves messages and cleanup
|
|
3758
3715
|
*
|
|
3759
3716
|
* @param {AgentProps} props - The input properties containing the user query, threadId, userId, traceId, etc.
|
|
3760
3717
|
* @returns {Promise<AgentFinalResponse>} A promise resolving to the final response, including the AI message and execution metadata.
|
|
@@ -3779,11 +3736,6 @@ declare class PESAgent implements IAgentCore {
|
|
|
3779
3736
|
/**
|
|
3780
3737
|
* Performs the planning phase including LLM call and output parsing.
|
|
3781
3738
|
* @private
|
|
3782
|
-
*
|
|
3783
|
-
* @remarks
|
|
3784
|
-
* The planning prompt instructs the LLM to produce a concise `title` (<= 10 words)
|
|
3785
|
-
* alongside `intent`, `plan`, and `toolCalls`. After parsing, a `TITLE` observation
|
|
3786
|
-
* is emitted (if present) for UI components to subscribe via `ObservationSocket`.
|
|
3787
3739
|
*/
|
|
3788
3740
|
private _performPlanning;
|
|
3789
3741
|
/**
|
|
@@ -3793,7 +3745,6 @@ declare class PESAgent implements IAgentCore {
|
|
|
3793
3745
|
private _delegateA2ATasks;
|
|
3794
3746
|
/**
|
|
3795
3747
|
* Waits for A2A tasks to complete with configurable timeout.
|
|
3796
|
-
* Polls task status periodically and updates local repository with results.
|
|
3797
3748
|
* @private
|
|
3798
3749
|
*/
|
|
3799
3750
|
private _waitForA2ACompletion;
|
|
@@ -5253,4 +5204,4 @@ declare const generateUUID: () => string;
|
|
|
5253
5204
|
*/
|
|
5254
5205
|
declare const VERSION = "0.3.8";
|
|
5255
5206
|
|
|
5256
|
-
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, 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 FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, 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 PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type
|
|
5207
|
+
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, 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 FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, 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 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, 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
|
@@ -2787,41 +2787,6 @@ interface ReasoningEngine {
|
|
|
2787
2787
|
*/
|
|
2788
2788
|
call(prompt: FormattedPrompt, options: CallOptions): Promise<AsyncIterable<StreamEvent>>;
|
|
2789
2789
|
}
|
|
2790
|
-
/**
|
|
2791
|
-
* Interface for the stateless prompt assembler.
|
|
2792
|
-
* Uses a blueprint (template) and context provided by Agent Logic
|
|
2793
|
-
* to create a standardized prompt format (`ArtStandardPrompt`).
|
|
2794
|
-
*/
|
|
2795
|
-
interface PromptManager {
|
|
2796
|
-
/**
|
|
2797
|
-
* Retrieves a named prompt fragment (e.g., a piece of instruction text).
|
|
2798
|
-
* Optionally allows for simple variable substitution if the fragment is a basic template.
|
|
2799
|
-
*
|
|
2800
|
-
* @param name - The unique identifier for the fragment.
|
|
2801
|
-
* @param context - Optional data for simple variable substitution within the fragment.
|
|
2802
|
-
* @returns The processed prompt fragment string.
|
|
2803
|
-
* @throws {ARTError} If the fragment is not found.
|
|
2804
|
-
*/
|
|
2805
|
-
getFragment(name: string, context?: Record<string, any>): string;
|
|
2806
|
-
/**
|
|
2807
|
-
* Validates a constructed prompt object against the standard schema.
|
|
2808
|
-
*
|
|
2809
|
-
* @param prompt - The ArtStandardPrompt object constructed by the agent.
|
|
2810
|
-
* @returns The validated prompt object (potentially after normalization if the schema does that).
|
|
2811
|
-
* @throws {ZodError} If validation fails (can be caught and wrapped in ARTError).
|
|
2812
|
-
*/
|
|
2813
|
-
validatePrompt(prompt: ArtStandardPrompt): ArtStandardPrompt;
|
|
2814
|
-
/**
|
|
2815
|
-
* Assembles a prompt using a Mustache template (blueprint) and context data.
|
|
2816
|
-
* Renders the template with the provided context and parses the result as an ArtStandardPrompt.
|
|
2817
|
-
*
|
|
2818
|
-
* @param blueprint - The Mustache template containing the prompt structure.
|
|
2819
|
-
* @param context - The context data to inject into the template.
|
|
2820
|
-
* @returns A promise resolving to the assembled ArtStandardPrompt.
|
|
2821
|
-
* @throws {ARTError} If template rendering or JSON parsing fails.
|
|
2822
|
-
*/
|
|
2823
|
-
assemblePrompt(blueprint: PromptBlueprint, context: PromptContext): Promise<ArtStandardPrompt>;
|
|
2824
|
-
}
|
|
2825
2790
|
/**
|
|
2826
2791
|
* Resolves the final system prompt from base + instance/thread/call overrides
|
|
2827
2792
|
* using tag+variables and merge strategies.
|
|
@@ -3691,11 +3656,6 @@ declare class TaskDelegationService {
|
|
|
3691
3656
|
interface PESAgentDependencies {
|
|
3692
3657
|
/** Manages thread configuration and state. */
|
|
3693
3658
|
stateManager: StateManager$1;
|
|
3694
|
-
/**
|
|
3695
|
-
* Optional default system prompt string provided at the ART instance level.
|
|
3696
|
-
* This serves as a custom prompt part if no thread-specific or call-specific
|
|
3697
|
-
* system prompt is provided. It's appended to the agent's base system prompt.
|
|
3698
|
-
*/
|
|
3699
3659
|
/** Manages conversation history. */
|
|
3700
3660
|
conversationManager: ConversationManager;
|
|
3701
3661
|
/** Registry for available tools. */
|
|
@@ -3730,11 +3690,6 @@ interface PESAgentDependencies {
|
|
|
3730
3690
|
*
|
|
3731
3691
|
* It constructs standardized prompts (`ArtStandardPrompt`) directly as JavaScript objects
|
|
3732
3692
|
* for the `ReasoningEngine`. It processes the `StreamEvent` output from the reasoning engine for both planning and synthesis.
|
|
3733
|
-
*
|
|
3734
|
-
* // @see {PromptManager} // Removed
|
|
3735
|
-
* @see {ReasoningEngine}
|
|
3736
|
-
* @see {ArtStandardPrompt}
|
|
3737
|
-
* @see {StreamEvent}
|
|
3738
3693
|
*/
|
|
3739
3694
|
declare class PESAgent implements IAgentCore {
|
|
3740
3695
|
private readonly deps;
|
|
@@ -3750,11 +3705,13 @@ declare class PESAgent implements IAgentCore {
|
|
|
3750
3705
|
* **Workflow:**
|
|
3751
3706
|
* 1. **Initiation & Config:** Loads thread configuration and resolves system prompt
|
|
3752
3707
|
* 2. **Data Gathering:** Gathers history, available tools
|
|
3753
|
-
* 3. **
|
|
3754
|
-
*
|
|
3755
|
-
*
|
|
3756
|
-
*
|
|
3757
|
-
*
|
|
3708
|
+
* 3. **Loop (ReAct-like):**
|
|
3709
|
+
* - **Planning:** LLM call for planning and parsing (with access to history of previous steps).
|
|
3710
|
+
* - **A2A Discovery & Delegation:** Identifies and delegates A2A tasks.
|
|
3711
|
+
* - **Tool Execution:** Executes identified local tool calls.
|
|
3712
|
+
* - **Observation:** Results are fed back into the next iteration.
|
|
3713
|
+
* 4. **Synthesis:** LLM call for final response generation including all results
|
|
3714
|
+
* 5. **Finalization:** Saves messages and cleanup
|
|
3758
3715
|
*
|
|
3759
3716
|
* @param {AgentProps} props - The input properties containing the user query, threadId, userId, traceId, etc.
|
|
3760
3717
|
* @returns {Promise<AgentFinalResponse>} A promise resolving to the final response, including the AI message and execution metadata.
|
|
@@ -3779,11 +3736,6 @@ declare class PESAgent implements IAgentCore {
|
|
|
3779
3736
|
/**
|
|
3780
3737
|
* Performs the planning phase including LLM call and output parsing.
|
|
3781
3738
|
* @private
|
|
3782
|
-
*
|
|
3783
|
-
* @remarks
|
|
3784
|
-
* The planning prompt instructs the LLM to produce a concise `title` (<= 10 words)
|
|
3785
|
-
* alongside `intent`, `plan`, and `toolCalls`. After parsing, a `TITLE` observation
|
|
3786
|
-
* is emitted (if present) for UI components to subscribe via `ObservationSocket`.
|
|
3787
3739
|
*/
|
|
3788
3740
|
private _performPlanning;
|
|
3789
3741
|
/**
|
|
@@ -3793,7 +3745,6 @@ declare class PESAgent implements IAgentCore {
|
|
|
3793
3745
|
private _delegateA2ATasks;
|
|
3794
3746
|
/**
|
|
3795
3747
|
* Waits for A2A tasks to complete with configurable timeout.
|
|
3796
|
-
* Polls task status periodically and updates local repository with results.
|
|
3797
3748
|
* @private
|
|
3798
3749
|
*/
|
|
3799
3750
|
private _waitForA2ACompletion;
|
|
@@ -5253,4 +5204,4 @@ declare const generateUUID: () => string;
|
|
|
5253
5204
|
*/
|
|
5254
5205
|
declare const VERSION = "0.3.8";
|
|
5255
5206
|
|
|
5256
|
-
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, 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 FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, 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 PKCEOAuthConfig, PKCEOAuthStrategy, type ParsedToolCall, type PromptBlueprint, type PromptContext, type
|
|
5207
|
+
export { type A2AAgentInfo, type A2ATask, type A2ATaskEvent, type A2ATaskFilter, type A2ATaskMetadata, A2ATaskPriority, type A2ATaskResult, A2ATaskSocket, A2ATaskStatus, ARTError, AdapterInstantiationError, type AgentDiscoveryConfig, AgentDiscoveryService, 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 FilterOptions, type FormattedPrompt, GeminiAdapter, type GeminiAdapterOptions, GenericOAuthStrategy, 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 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, ToolRegistry, type ToolResult, type ToolSchema, type ToolSystem, TypedSocket, UISystem, UnknownProviderError, type UnsubscribeFunction, type UpdateA2ATaskRequest, VERSION, type ZyntopiaOAuthConfig, ZyntopiaOAuthStrategy, createArtInstance, generateUUID };
|