@runtypelabs/sdk 1.21.3 → 1.22.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.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -154,7 +154,9 @@ interface ModelConfig {
|
|
|
154
154
|
provider: string;
|
|
155
155
|
modelId: string;
|
|
156
156
|
displayName?: string;
|
|
157
|
+
/** @deprecated Use keyStatus instead */
|
|
157
158
|
supportsCustomKey: boolean;
|
|
159
|
+
keyStatus?: 'platform' | 'custom' | 'needs_setup';
|
|
158
160
|
costPer1kTokens?: number;
|
|
159
161
|
contextLength?: number;
|
|
160
162
|
maxOutputTokens?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -154,7 +154,9 @@ interface ModelConfig {
|
|
|
154
154
|
provider: string;
|
|
155
155
|
modelId: string;
|
|
156
156
|
displayName?: string;
|
|
157
|
+
/** @deprecated Use keyStatus instead */
|
|
157
158
|
supportsCustomKey: boolean;
|
|
159
|
+
keyStatus?: 'platform' | 'custom' | 'needs_setup';
|
|
158
160
|
costPer1kTokens?: number;
|
|
159
161
|
contextLength?: number;
|
|
160
162
|
maxOutputTokens?: number;
|
package/package.json
CHANGED