agent-afk 5.15.7 → 5.15.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/dist/agent/tools/nesting.d.ts +1 -1
- package/dist/cli.mjs +101 -101
- package/dist/index.mjs +1 -1
- package/dist/telegram.mjs +101 -101
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ export interface CreateChildProviderFactoryOptions {
|
|
|
23
23
|
}
|
|
24
24
|
export declare function createChildProviderFactory(opts?: CreateChildProviderFactoryOptions): (args: ChildProviderFactoryArgs) => ModelProvider;
|
|
25
25
|
export declare function buildReadOnlyReconProvider(model: AgentModelInput | undefined): ModelProvider;
|
|
26
|
-
export declare function createChildSkillExecutorFactory(defaultModel: AgentModelInput, apiKey: string | undefined, childProviderFactory: (args: ChildProviderFactoryArgs) => ModelProvider, baseUrl?: string, traceWriter?: TraceWriter, backgroundRegistry?: BackgroundAgentRegistry, cwd?: string, resolveApiKeyForModel?: (model: string) => string | undefined, surface?: Surface): (depth: number, maxDepth: number, signal: AbortSignal) => SkillExecutor;
|
|
26
|
+
export declare function createChildSkillExecutorFactory(defaultModel: AgentModelInput, apiKey: string | undefined, childProviderFactory: (args: ChildProviderFactoryArgs) => ModelProvider, baseUrl?: string, traceWriter?: TraceWriter, backgroundRegistry?: BackgroundAgentRegistry, cwd?: string, resolveApiKeyForModel?: (model: string) => string | undefined, surface?: Surface, defaultSubagentModel?: AgentModelInput): (depth: number, maxDepth: number, signal: AbortSignal) => SkillExecutor;
|
|
27
27
|
export type PhaseRole = 'read-only' | 'read-write';
|
|
28
28
|
export declare function buildSkillRestrictedProvider(allowedTools: string[], model: AgentModelInput | undefined): ModelProvider;
|
|
29
29
|
export declare function buildPhaseRestrictedProvider(_role: 'read-only', model: AgentModelInput | undefined): ModelProvider;
|