@almadar/agent 1.3.0 → 1.3.1

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,7 @@
1
1
  import * as _langchain_core_tools from '@langchain/core/tools';
2
2
  import { z } from 'zod';
3
- import { S as SSEEventType, a as SSEEvent } from './api-types-BW_58thJ.js';
3
+ import { LLMProvider } from '@almadar/llm';
4
+ import { S as SSEEventType, a as SSEEvent } from './api-types-DVdGNr2M.js';
4
5
  import { AgentDomainCategory } from '@almadar/core/types';
5
6
 
6
7
  type DomainOrbitalEventCallback = (orbitalName: string, orbitalIndex: number, totalOrbitals: number, event: {
@@ -13,6 +14,10 @@ interface DomainOrbitalToolOptions {
13
14
  onEvent?: DomainOrbitalEventCallback;
14
15
  onOrbitalComplete?: DomainOrbitalCompleteCallback;
15
16
  workDir?: string;
17
+ /** LLM provider for domain orbital generation. Defaults to 'anthropic' */
18
+ provider?: LLMProvider;
19
+ /** Model name for domain orbital generation. Defaults to 'claude-sonnet-4-20250514' */
20
+ model?: string;
16
21
  }
17
22
  interface DomainOrbitalSpec {
18
23
  name: string;
@@ -1004,6 +1009,10 @@ interface OrbitalSubagentToolOptions {
1004
1009
  onSubagentEvent?: SubagentEventCallback;
1005
1010
  onOrbitalComplete?: OrbitalCompleteCallback;
1006
1011
  requirements?: OrbitalRequirements;
1012
+ /** LLM provider for orbital generation subagent. Defaults to 'anthropic' */
1013
+ provider?: LLMProvider;
1014
+ /** Model name for orbital generation subagent. Defaults to 'claude-sonnet-4-20250514' */
1015
+ model?: string;
1007
1016
  }
1008
1017
  /**
1009
1018
  * Create a tool for generating orbitals with subagent event streaming.
@@ -1422,4 +1431,4 @@ declare function createOrbitalSubagentTool(options?: OrbitalSubagentToolOptions)
1422
1431
  */
1423
1432
  declare function createSubagentEventWrapper(writeEvent: (event: SSEEvent) => void): SubagentEventCallback;
1424
1433
 
1425
- export { type DomainOrbitalEventCallback as D, type OrbitalCompleteCallback as O, type SubagentEventCallback as S, type DomainOrbitalCompleteCallback as a, type DomainOrbitalSpec as b, type DomainOrbitalToolOptions as c, type OrbitalRequirements as d, type OrbitalSubagentToolOptions as e, createConstructCombinedDomainTool as f, createDomainOrbitalTools as g, createGenerateOrbitalDomainTool as h, createOrbitalSubagentTool as i, createSubagentEventWrapper as j };
1434
+ export { type DomainOrbitalCompleteCallback as D, type OrbitalCompleteCallback as O, type SubagentEventCallback as S, type DomainOrbitalEventCallback as a, type DomainOrbitalSpec as b, type DomainOrbitalToolOptions as c, type OrbitalRequirements as d, type OrbitalSubagentToolOptions as e, createConstructCombinedDomainTool as f, createDomainOrbitalTools as g, createGenerateOrbitalDomainTool as h, createOrbitalSubagentTool as i, createSubagentEventWrapper as j };