@netlify/agent-runner-cli 1.182.0 → 1.184.0-no-model-default.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.
package/dist/index.d.ts CHANGED
@@ -5,7 +5,6 @@ declare const ACCOUNT_TYPE_ENTERPRISE = "enterprise";
5
5
  declare const ACCOUNT_TYPE_FREE = "free";
6
6
  declare const SUPPORTED_MODES: string[];
7
7
  declare const SUPPORTED_EFFORTS: readonly ["low", "medium", "high", "max", "xhigh"];
8
- declare const MODEL_DEFAULT_EFFORT = "model_default";
9
8
 
10
9
  interface AgentQuestionOption {
11
10
  label: string;
@@ -29,7 +28,7 @@ interface ResolvedAuthorization {
29
28
  granted: boolean;
30
29
  }
31
30
  type RunnerMode = (typeof SUPPORTED_MODES)[number];
32
- type RunnerEffort = (typeof SUPPORTED_EFFORTS)[number] | typeof MODEL_DEFAULT_EFFORT;
31
+ type RunnerEffort = (typeof SUPPORTED_EFFORTS)[number];
33
32
  type RunnerConfig = {
34
33
  id: string;
35
34
  sessionId: string;