@nikcli-ai/sdk 1.184.0 → 1.185.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.
|
@@ -1990,6 +1990,10 @@ export type ProviderConfig = {
|
|
|
1990
1990
|
[key: string]: unknown;
|
|
1991
1991
|
};
|
|
1992
1992
|
};
|
|
1993
|
+
/**
|
|
1994
|
+
* Hide this model from the picker (opencode #21038). Useful when a provider exposes models you don't have access to on your subscription tier.
|
|
1995
|
+
*/
|
|
1996
|
+
disabled?: boolean;
|
|
1993
1997
|
};
|
|
1994
1998
|
};
|
|
1995
1999
|
whitelist?: Array<string>;
|
|
@@ -2499,6 +2503,10 @@ export type Config = {
|
|
|
2499
2503
|
initialization?: {
|
|
2500
2504
|
[key: string]: unknown;
|
|
2501
2505
|
};
|
|
2506
|
+
/**
|
|
2507
|
+
* Minimum diagnostic severity: 1=Error (default), 2=Warning, 3=Info, 4=Hint.
|
|
2508
|
+
*/
|
|
2509
|
+
min_severity?: number;
|
|
2502
2510
|
};
|
|
2503
2511
|
};
|
|
2504
2512
|
/**
|