@kadi.build/core 0.15.5 → 0.15.6

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/src/index.ts CHANGED
@@ -31,6 +31,26 @@ export { z } from 'zod';
31
31
  // Main client
32
32
  export { KadiClient } from './client.js';
33
33
 
34
+ // ReActLoop — core agent execution primitive
35
+ export { ReActLoop } from './react-loop.js';
36
+ export type {
37
+ ReActConfig,
38
+ ReActResult,
39
+ TurnInfo,
40
+ TurnResult,
41
+ LoopHandle,
42
+ ModelConfig,
43
+ ToolsConfig,
44
+ CustomTool,
45
+ ToolRouter,
46
+ EventsConfig,
47
+ ReActHooks,
48
+ Message,
49
+ ToolCall,
50
+ ModelResponse,
51
+ StopReason,
52
+ } from './react-loop.js';
53
+
34
54
  // Errors
35
55
  export { KadiError } from './errors.js';
36
56
  export type { ErrorCode, ErrorContext } from './errors.js';