@everworker/oneringai 0.2.3 → 0.3.0

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.
@@ -1,6 +1,93 @@
1
- import { I as IConnectorRegistry, c as IProvider } from './IProvider-DcYJ3YE-.js';
1
+ import { I as IConnectorRegistry, e as IProvider } from './IProvider-BUbU5UwV.js';
2
2
  import { EventEmitter } from 'eventemitter3';
3
3
 
4
+ /**
5
+ * Content types based on OpenAI Responses API format
6
+ */
7
+ declare enum ContentType {
8
+ INPUT_TEXT = "input_text",
9
+ INPUT_IMAGE_URL = "input_image_url",
10
+ INPUT_FILE = "input_file",
11
+ OUTPUT_TEXT = "output_text",
12
+ TOOL_USE = "tool_use",
13
+ TOOL_RESULT = "tool_result"
14
+ }
15
+ interface BaseContent {
16
+ type: ContentType;
17
+ }
18
+ interface InputTextContent extends BaseContent {
19
+ type: ContentType.INPUT_TEXT;
20
+ text: string;
21
+ }
22
+ interface InputImageContent extends BaseContent {
23
+ type: ContentType.INPUT_IMAGE_URL;
24
+ image_url: {
25
+ url: string;
26
+ detail?: 'auto' | 'low' | 'high';
27
+ };
28
+ }
29
+ interface InputFileContent extends BaseContent {
30
+ type: ContentType.INPUT_FILE;
31
+ file_id: string;
32
+ }
33
+ interface OutputTextContent extends BaseContent {
34
+ type: ContentType.OUTPUT_TEXT;
35
+ text: string;
36
+ annotations?: any[];
37
+ }
38
+ interface ToolUseContent extends BaseContent {
39
+ type: ContentType.TOOL_USE;
40
+ id: string;
41
+ name: string;
42
+ arguments: string;
43
+ }
44
+ interface ToolResultContent extends BaseContent {
45
+ type: ContentType.TOOL_RESULT;
46
+ tool_use_id: string;
47
+ content: string | any;
48
+ error?: string;
49
+ /**
50
+ * Images extracted from tool results via the __images convention.
51
+ * Stored separately from `content` so they don't inflate text-based token counts.
52
+ * Provider converters read this field to inject native multimodal image blocks.
53
+ */
54
+ __images?: Array<{
55
+ base64: string;
56
+ mediaType: string;
57
+ }>;
58
+ }
59
+ type Content = InputTextContent | InputImageContent | InputFileContent | OutputTextContent | ToolUseContent | ToolResultContent;
60
+
61
+ /**
62
+ * Message entity based on OpenAI Responses API format
63
+ */
64
+
65
+ declare enum MessageRole {
66
+ USER = "user",
67
+ ASSISTANT = "assistant",
68
+ DEVELOPER = "developer"
69
+ }
70
+ interface Message {
71
+ type: 'message';
72
+ id?: string;
73
+ role: MessageRole;
74
+ content: Content[];
75
+ }
76
+ interface CompactionItem {
77
+ type: 'compaction';
78
+ id: string;
79
+ encrypted_content: string;
80
+ }
81
+ interface ReasoningItem {
82
+ type: 'reasoning';
83
+ id: string;
84
+ effort?: 'low' | 'medium' | 'high';
85
+ summary?: string;
86
+ encrypted_content?: string;
87
+ }
88
+ type InputItem = Message | CompactionItem;
89
+ type OutputItem = Message | CompactionItem | ReasoningItem;
90
+
4
91
  /**
5
92
  * Memory entities for WorkingMemory
6
93
  *
@@ -480,93 +567,6 @@ declare function defaultDescribeCall(args: Record<string, unknown>, maxLength?:
480
567
  */
481
568
  declare function getToolCallDescription<TArgs>(tool: ToolFunction<TArgs>, args: TArgs): string;
482
569
 
483
- /**
484
- * Content types based on OpenAI Responses API format
485
- */
486
- declare enum ContentType {
487
- INPUT_TEXT = "input_text",
488
- INPUT_IMAGE_URL = "input_image_url",
489
- INPUT_FILE = "input_file",
490
- OUTPUT_TEXT = "output_text",
491
- TOOL_USE = "tool_use",
492
- TOOL_RESULT = "tool_result"
493
- }
494
- interface BaseContent {
495
- type: ContentType;
496
- }
497
- interface InputTextContent extends BaseContent {
498
- type: ContentType.INPUT_TEXT;
499
- text: string;
500
- }
501
- interface InputImageContent extends BaseContent {
502
- type: ContentType.INPUT_IMAGE_URL;
503
- image_url: {
504
- url: string;
505
- detail?: 'auto' | 'low' | 'high';
506
- };
507
- }
508
- interface InputFileContent extends BaseContent {
509
- type: ContentType.INPUT_FILE;
510
- file_id: string;
511
- }
512
- interface OutputTextContent extends BaseContent {
513
- type: ContentType.OUTPUT_TEXT;
514
- text: string;
515
- annotations?: any[];
516
- }
517
- interface ToolUseContent extends BaseContent {
518
- type: ContentType.TOOL_USE;
519
- id: string;
520
- name: string;
521
- arguments: string;
522
- }
523
- interface ToolResultContent extends BaseContent {
524
- type: ContentType.TOOL_RESULT;
525
- tool_use_id: string;
526
- content: string | any;
527
- error?: string;
528
- /**
529
- * Images extracted from tool results via the __images convention.
530
- * Stored separately from `content` so they don't inflate text-based token counts.
531
- * Provider converters read this field to inject native multimodal image blocks.
532
- */
533
- __images?: Array<{
534
- base64: string;
535
- mediaType: string;
536
- }>;
537
- }
538
- type Content = InputTextContent | InputImageContent | InputFileContent | OutputTextContent | ToolUseContent | ToolResultContent;
539
-
540
- /**
541
- * Message entity based on OpenAI Responses API format
542
- */
543
-
544
- declare enum MessageRole {
545
- USER = "user",
546
- ASSISTANT = "assistant",
547
- DEVELOPER = "developer"
548
- }
549
- interface Message {
550
- type: 'message';
551
- id?: string;
552
- role: MessageRole;
553
- content: Content[];
554
- }
555
- interface CompactionItem {
556
- type: 'compaction';
557
- id: string;
558
- encrypted_content: string;
559
- }
560
- interface ReasoningItem {
561
- type: 'reasoning';
562
- id: string;
563
- effort?: 'low' | 'medium' | 'high';
564
- summary?: string;
565
- encrypted_content?: string;
566
- }
567
- type InputItem = Message | CompactionItem;
568
- type OutputItem = Message | CompactionItem | ReasoningItem;
569
-
570
570
  /**
571
571
  * LLM Response entity based on OpenAI Responses API format
572
572
  */
@@ -1349,4 +1349,4 @@ declare class HookManager {
1349
1349
  getDisabledHooks(): string[];
1350
1350
  }
1351
1351
 
1352
- export { type OutputTextContent as $, type AgentEvents as A, type SimpleScope as B, type Content as C, DEFAULT_MEMORY_CONFIG as D, ExecutionContext as E, type FunctionToolDefinition as F, forTasks as G, type HookConfig as H, type InputItem as I, forPlan as J, scopeEquals as K, type LLMResponse as L, type MemoryEntry as M, scopeMatches as N, type OutputItem as O, type PriorityCalculator as P, isSimpleScope as Q, isTaskAwareScope as R, type StreamEvent as S, type Tool as T, isTerminalMemoryStatus as U, calculateEntrySize as V, type WorkingMemoryConfig as W, MEMORY_PRIORITY_VALUES as X, ContentType as Y, type InputTextContent as Z, type InputImageContent as _, type ToolFunction as a, type ToolUseContent as a0, type ToolResultContent as a1, type Message as a2, type CompactionItem as a3, type ReasoningItem as a4, ToolCallState as a5, defaultDescribeCall as a6, getToolCallDescription as a7, type BuiltInTool as a8, type ToolExecutionContext as a9, type Hook as aA, type ModifyingHook as aB, type BeforeToolContext as aC, type AfterToolContext as aD, type ApproveToolContext as aE, type ToolModification as aF, type ApprovalResult as aG, type ExecutionStartEvent as aH, type ExecutionCompleteEvent as aI, type ToolStartEvent as aJ, type ToolCompleteEvent as aK, type LLMRequestEvent as aL, type LLMResponseEvent as aM, type JSONSchema as aa, type ResponseCreatedEvent as ab, type ResponseInProgressEvent as ac, type OutputTextDeltaEvent as ad, type OutputTextDoneEvent as ae, type ToolCallStartEvent as af, type ToolCallArgumentsDeltaEvent as ag, type ToolCallArgumentsDoneEvent as ah, type ToolExecutionStartEvent as ai, type ToolExecutionDoneEvent as aj, type IterationCompleteEvent$1 as ak, type ResponseCompleteEvent as al, type ErrorEvent as am, isStreamEvent as an, isOutputTextDelta as ao, isToolCallStart as ap, isToolCallArgumentsDelta as aq, isToolCallArgumentsDone as ar, isResponseComplete as as, isErrorEvent as at, HookManager as au, type AgentEventName as av, type ExecutionConfig as aw, type AgenticLoopEvents as ax, type AgenticLoopEventName as ay, type HookName as az, type ToolContext as b, type ToolPermissionConfig as c, type ToolCall as d, type MemoryScope as e, type MemoryPriority as f, type MemoryTier as g, type ToolResult as h, type ITextProvider as i, type HistoryMode as j, type AgentResponse as k, type ExecutionMetrics as l, type AuditEntry as m, type StaleEntryInfo as n, type PriorityContext as o, type MemoryIndex as p, type TaskStatusForMemory as q, type WorkingMemoryAccess as r, type TokenUsage as s, StreamEventType as t, type TextGenerateOptions as u, type ModelCapabilities as v, MessageRole as w, type MemoryEntryInput as x, type MemoryIndexEntry as y, type TaskAwareScope as z };
1352
+ export { type InputTextContent as $, type AgentEvents as A, type AgenticLoopEvents as B, type Content as C, type ApprovalResult as D, ExecutionContext as E, type FunctionToolDefinition as F, type ApproveToolContext as G, type HookConfig as H, type InputItem as I, type BeforeToolContext as J, type BuiltInTool as K, type LLMResponse as L, type MemoryEntry as M, type CompactionItem as N, type OutputItem as O, type PriorityCalculator as P, ContentType as Q, DEFAULT_MEMORY_CONFIG as R, type StreamEvent as S, type ToolFunction as T, type ErrorEvent as U, type ExecutionConfig as V, type WorkingMemoryConfig as W, type Hook as X, HookManager as Y, type HookName as Z, type InputImageContent as _, type MemoryScope as a, type IterationCompleteEvent$1 as a0, type JSONSchema as a1, MEMORY_PRIORITY_VALUES as a2, type MemoryEntryInput as a3, type MemoryIndexEntry as a4, type Message as a5, type ModifyingHook as a6, type OutputTextContent as a7, type OutputTextDeltaEvent as a8, type OutputTextDoneEvent as a9, isTaskAwareScope as aA, isTerminalMemoryStatus as aB, isToolCallArgumentsDelta as aC, isToolCallArgumentsDone as aD, isToolCallStart as aE, scopeEquals as aF, scopeMatches as aG, type ExecutionCompleteEvent as aH, type ExecutionStartEvent as aI, type LLMRequestEvent as aJ, type LLMResponseEvent as aK, type ToolCompleteEvent as aL, type ToolStartEvent as aM, type ReasoningItem as aa, type ResponseCompleteEvent as ab, type ResponseCreatedEvent as ac, type ResponseInProgressEvent as ad, type SimpleScope as ae, type TaskAwareScope as af, type ToolCallArgumentsDeltaEvent as ag, type ToolCallArgumentsDoneEvent as ah, type ToolCallStartEvent as ai, ToolCallState as aj, type ToolExecutionContext as ak, type ToolExecutionDoneEvent as al, type ToolExecutionStartEvent as am, type ToolModification as an, type ToolResultContent as ao, type ToolUseContent as ap, calculateEntrySize as aq, defaultDescribeCall as ar, forPlan as as, forTasks as at, getToolCallDescription as au, isErrorEvent as av, isOutputTextDelta as aw, isResponseComplete as ax, isSimpleScope as ay, isStreamEvent as az, type Tool as b, type ToolContext as c, type ToolPermissionConfig as d, type ToolCall as e, type MemoryPriority as f, type MemoryTier as g, type ToolResult as h, type ITextProvider as i, type HistoryMode as j, type AgentResponse as k, type ExecutionMetrics as l, type AuditEntry as m, type StaleEntryInfo as n, type PriorityContext as o, type MemoryIndex as p, type TaskStatusForMemory as q, type WorkingMemoryAccess as r, type TokenUsage as s, StreamEventType as t, type TextGenerateOptions as u, type ModelCapabilities as v, MessageRole as w, type AfterToolContext as x, type AgentEventName as y, type AgenticLoopEventName as z };
@@ -1,6 +1,93 @@
1
- import { I as IConnectorRegistry, c as IProvider } from './IProvider-c4QCbPjn.cjs';
1
+ import { I as IConnectorRegistry, e as IProvider } from './IProvider-Br817mKc.cjs';
2
2
  import { EventEmitter } from 'eventemitter3';
3
3
 
4
+ /**
5
+ * Content types based on OpenAI Responses API format
6
+ */
7
+ declare enum ContentType {
8
+ INPUT_TEXT = "input_text",
9
+ INPUT_IMAGE_URL = "input_image_url",
10
+ INPUT_FILE = "input_file",
11
+ OUTPUT_TEXT = "output_text",
12
+ TOOL_USE = "tool_use",
13
+ TOOL_RESULT = "tool_result"
14
+ }
15
+ interface BaseContent {
16
+ type: ContentType;
17
+ }
18
+ interface InputTextContent extends BaseContent {
19
+ type: ContentType.INPUT_TEXT;
20
+ text: string;
21
+ }
22
+ interface InputImageContent extends BaseContent {
23
+ type: ContentType.INPUT_IMAGE_URL;
24
+ image_url: {
25
+ url: string;
26
+ detail?: 'auto' | 'low' | 'high';
27
+ };
28
+ }
29
+ interface InputFileContent extends BaseContent {
30
+ type: ContentType.INPUT_FILE;
31
+ file_id: string;
32
+ }
33
+ interface OutputTextContent extends BaseContent {
34
+ type: ContentType.OUTPUT_TEXT;
35
+ text: string;
36
+ annotations?: any[];
37
+ }
38
+ interface ToolUseContent extends BaseContent {
39
+ type: ContentType.TOOL_USE;
40
+ id: string;
41
+ name: string;
42
+ arguments: string;
43
+ }
44
+ interface ToolResultContent extends BaseContent {
45
+ type: ContentType.TOOL_RESULT;
46
+ tool_use_id: string;
47
+ content: string | any;
48
+ error?: string;
49
+ /**
50
+ * Images extracted from tool results via the __images convention.
51
+ * Stored separately from `content` so they don't inflate text-based token counts.
52
+ * Provider converters read this field to inject native multimodal image blocks.
53
+ */
54
+ __images?: Array<{
55
+ base64: string;
56
+ mediaType: string;
57
+ }>;
58
+ }
59
+ type Content = InputTextContent | InputImageContent | InputFileContent | OutputTextContent | ToolUseContent | ToolResultContent;
60
+
61
+ /**
62
+ * Message entity based on OpenAI Responses API format
63
+ */
64
+
65
+ declare enum MessageRole {
66
+ USER = "user",
67
+ ASSISTANT = "assistant",
68
+ DEVELOPER = "developer"
69
+ }
70
+ interface Message {
71
+ type: 'message';
72
+ id?: string;
73
+ role: MessageRole;
74
+ content: Content[];
75
+ }
76
+ interface CompactionItem {
77
+ type: 'compaction';
78
+ id: string;
79
+ encrypted_content: string;
80
+ }
81
+ interface ReasoningItem {
82
+ type: 'reasoning';
83
+ id: string;
84
+ effort?: 'low' | 'medium' | 'high';
85
+ summary?: string;
86
+ encrypted_content?: string;
87
+ }
88
+ type InputItem = Message | CompactionItem;
89
+ type OutputItem = Message | CompactionItem | ReasoningItem;
90
+
4
91
  /**
5
92
  * Memory entities for WorkingMemory
6
93
  *
@@ -480,93 +567,6 @@ declare function defaultDescribeCall(args: Record<string, unknown>, maxLength?:
480
567
  */
481
568
  declare function getToolCallDescription<TArgs>(tool: ToolFunction<TArgs>, args: TArgs): string;
482
569
 
483
- /**
484
- * Content types based on OpenAI Responses API format
485
- */
486
- declare enum ContentType {
487
- INPUT_TEXT = "input_text",
488
- INPUT_IMAGE_URL = "input_image_url",
489
- INPUT_FILE = "input_file",
490
- OUTPUT_TEXT = "output_text",
491
- TOOL_USE = "tool_use",
492
- TOOL_RESULT = "tool_result"
493
- }
494
- interface BaseContent {
495
- type: ContentType;
496
- }
497
- interface InputTextContent extends BaseContent {
498
- type: ContentType.INPUT_TEXT;
499
- text: string;
500
- }
501
- interface InputImageContent extends BaseContent {
502
- type: ContentType.INPUT_IMAGE_URL;
503
- image_url: {
504
- url: string;
505
- detail?: 'auto' | 'low' | 'high';
506
- };
507
- }
508
- interface InputFileContent extends BaseContent {
509
- type: ContentType.INPUT_FILE;
510
- file_id: string;
511
- }
512
- interface OutputTextContent extends BaseContent {
513
- type: ContentType.OUTPUT_TEXT;
514
- text: string;
515
- annotations?: any[];
516
- }
517
- interface ToolUseContent extends BaseContent {
518
- type: ContentType.TOOL_USE;
519
- id: string;
520
- name: string;
521
- arguments: string;
522
- }
523
- interface ToolResultContent extends BaseContent {
524
- type: ContentType.TOOL_RESULT;
525
- tool_use_id: string;
526
- content: string | any;
527
- error?: string;
528
- /**
529
- * Images extracted from tool results via the __images convention.
530
- * Stored separately from `content` so they don't inflate text-based token counts.
531
- * Provider converters read this field to inject native multimodal image blocks.
532
- */
533
- __images?: Array<{
534
- base64: string;
535
- mediaType: string;
536
- }>;
537
- }
538
- type Content = InputTextContent | InputImageContent | InputFileContent | OutputTextContent | ToolUseContent | ToolResultContent;
539
-
540
- /**
541
- * Message entity based on OpenAI Responses API format
542
- */
543
-
544
- declare enum MessageRole {
545
- USER = "user",
546
- ASSISTANT = "assistant",
547
- DEVELOPER = "developer"
548
- }
549
- interface Message {
550
- type: 'message';
551
- id?: string;
552
- role: MessageRole;
553
- content: Content[];
554
- }
555
- interface CompactionItem {
556
- type: 'compaction';
557
- id: string;
558
- encrypted_content: string;
559
- }
560
- interface ReasoningItem {
561
- type: 'reasoning';
562
- id: string;
563
- effort?: 'low' | 'medium' | 'high';
564
- summary?: string;
565
- encrypted_content?: string;
566
- }
567
- type InputItem = Message | CompactionItem;
568
- type OutputItem = Message | CompactionItem | ReasoningItem;
569
-
570
570
  /**
571
571
  * LLM Response entity based on OpenAI Responses API format
572
572
  */
@@ -1349,4 +1349,4 @@ declare class HookManager {
1349
1349
  getDisabledHooks(): string[];
1350
1350
  }
1351
1351
 
1352
- export { type OutputTextContent as $, type AgentEvents as A, type SimpleScope as B, type Content as C, DEFAULT_MEMORY_CONFIG as D, ExecutionContext as E, type FunctionToolDefinition as F, forTasks as G, type HookConfig as H, type InputItem as I, forPlan as J, scopeEquals as K, type LLMResponse as L, type MemoryEntry as M, scopeMatches as N, type OutputItem as O, type PriorityCalculator as P, isSimpleScope as Q, isTaskAwareScope as R, type StreamEvent as S, type Tool as T, isTerminalMemoryStatus as U, calculateEntrySize as V, type WorkingMemoryConfig as W, MEMORY_PRIORITY_VALUES as X, ContentType as Y, type InputTextContent as Z, type InputImageContent as _, type ToolFunction as a, type ToolUseContent as a0, type ToolResultContent as a1, type Message as a2, type CompactionItem as a3, type ReasoningItem as a4, ToolCallState as a5, defaultDescribeCall as a6, getToolCallDescription as a7, type BuiltInTool as a8, type ToolExecutionContext as a9, type Hook as aA, type ModifyingHook as aB, type BeforeToolContext as aC, type AfterToolContext as aD, type ApproveToolContext as aE, type ToolModification as aF, type ApprovalResult as aG, type ExecutionStartEvent as aH, type ExecutionCompleteEvent as aI, type ToolStartEvent as aJ, type ToolCompleteEvent as aK, type LLMRequestEvent as aL, type LLMResponseEvent as aM, type JSONSchema as aa, type ResponseCreatedEvent as ab, type ResponseInProgressEvent as ac, type OutputTextDeltaEvent as ad, type OutputTextDoneEvent as ae, type ToolCallStartEvent as af, type ToolCallArgumentsDeltaEvent as ag, type ToolCallArgumentsDoneEvent as ah, type ToolExecutionStartEvent as ai, type ToolExecutionDoneEvent as aj, type IterationCompleteEvent$1 as ak, type ResponseCompleteEvent as al, type ErrorEvent as am, isStreamEvent as an, isOutputTextDelta as ao, isToolCallStart as ap, isToolCallArgumentsDelta as aq, isToolCallArgumentsDone as ar, isResponseComplete as as, isErrorEvent as at, HookManager as au, type AgentEventName as av, type ExecutionConfig as aw, type AgenticLoopEvents as ax, type AgenticLoopEventName as ay, type HookName as az, type ToolContext as b, type ToolPermissionConfig as c, type ToolCall as d, type MemoryScope as e, type MemoryPriority as f, type MemoryTier as g, type ToolResult as h, type ITextProvider as i, type HistoryMode as j, type AgentResponse as k, type ExecutionMetrics as l, type AuditEntry as m, type StaleEntryInfo as n, type PriorityContext as o, type MemoryIndex as p, type TaskStatusForMemory as q, type WorkingMemoryAccess as r, type TokenUsage as s, StreamEventType as t, type TextGenerateOptions as u, type ModelCapabilities as v, MessageRole as w, type MemoryEntryInput as x, type MemoryIndexEntry as y, type TaskAwareScope as z };
1352
+ export { type InputTextContent as $, type AgentEvents as A, type AgenticLoopEvents as B, type Content as C, type ApprovalResult as D, ExecutionContext as E, type FunctionToolDefinition as F, type ApproveToolContext as G, type HookConfig as H, type InputItem as I, type BeforeToolContext as J, type BuiltInTool as K, type LLMResponse as L, type MemoryEntry as M, type CompactionItem as N, type OutputItem as O, type PriorityCalculator as P, ContentType as Q, DEFAULT_MEMORY_CONFIG as R, type StreamEvent as S, type ToolFunction as T, type ErrorEvent as U, type ExecutionConfig as V, type WorkingMemoryConfig as W, type Hook as X, HookManager as Y, type HookName as Z, type InputImageContent as _, type MemoryScope as a, type IterationCompleteEvent$1 as a0, type JSONSchema as a1, MEMORY_PRIORITY_VALUES as a2, type MemoryEntryInput as a3, type MemoryIndexEntry as a4, type Message as a5, type ModifyingHook as a6, type OutputTextContent as a7, type OutputTextDeltaEvent as a8, type OutputTextDoneEvent as a9, isTaskAwareScope as aA, isTerminalMemoryStatus as aB, isToolCallArgumentsDelta as aC, isToolCallArgumentsDone as aD, isToolCallStart as aE, scopeEquals as aF, scopeMatches as aG, type ExecutionCompleteEvent as aH, type ExecutionStartEvent as aI, type LLMRequestEvent as aJ, type LLMResponseEvent as aK, type ToolCompleteEvent as aL, type ToolStartEvent as aM, type ReasoningItem as aa, type ResponseCompleteEvent as ab, type ResponseCreatedEvent as ac, type ResponseInProgressEvent as ad, type SimpleScope as ae, type TaskAwareScope as af, type ToolCallArgumentsDeltaEvent as ag, type ToolCallArgumentsDoneEvent as ah, type ToolCallStartEvent as ai, ToolCallState as aj, type ToolExecutionContext as ak, type ToolExecutionDoneEvent as al, type ToolExecutionStartEvent as am, type ToolModification as an, type ToolResultContent as ao, type ToolUseContent as ap, calculateEntrySize as aq, defaultDescribeCall as ar, forPlan as as, forTasks as at, getToolCallDescription as au, isErrorEvent as av, isOutputTextDelta as aw, isResponseComplete as ax, isSimpleScope as ay, isStreamEvent as az, type Tool as b, type ToolContext as c, type ToolPermissionConfig as d, type ToolCall as e, type MemoryPriority as f, type MemoryTier as g, type ToolResult as h, type ITextProvider as i, type HistoryMode as j, type AgentResponse as k, type ExecutionMetrics as l, type AuditEntry as m, type StaleEntryInfo as n, type PriorityContext as o, type MemoryIndex as p, type TaskStatusForMemory as q, type WorkingMemoryAccess as r, type TokenUsage as s, StreamEventType as t, type TextGenerateOptions as u, type ModelCapabilities as v, MessageRole as w, type AfterToolContext as x, type AgentEventName as y, type AgenticLoopEventName as z };