agent-afk 5.15.10 → 5.15.11

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.
@@ -32,6 +32,7 @@ export interface SubagentManagerOptions {
32
32
  progressSink?: SubagentProgressSink;
33
33
  apiKey?: string;
34
34
  baseUrl?: string;
35
+ parentModel?: string;
35
36
  cwd?: string;
36
37
  traceWriter?: TraceWriter;
37
38
  surface?: Surface;
@@ -44,6 +45,7 @@ export declare class SubagentManager {
44
45
  private readonly progressSink;
45
46
  private readonly parentApiKey;
46
47
  private readonly parentBaseUrl;
48
+ private readonly parentProvider;
47
49
  private parentCwd;
48
50
  private readonly parentTraceWriter;
49
51
  private readonly parentSurface;
@@ -1,3 +1,4 @@
1
+ import { type BundledProviderName } from '../providers/index.js';
1
2
  export declare function isAnthropicCredential(key: string | undefined): key is string;
2
3
  export declare function applyParentCredentialFallback(args: {
3
4
  childModel: string;
@@ -8,4 +9,5 @@ export declare function applyManagerApiKeyFallback(args: {
8
9
  childModel: string | undefined;
9
10
  configApiKey: string | undefined;
10
11
  parentApiKey: string | undefined;
12
+ parentProvider?: BundledProviderName | undefined;
11
13
  }): string | undefined;