@meetkai/mka1 0.54.32 → 0.54.33
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/bin/mcp-server.js +96 -13
- package/bin/mcp-server.js.map +11 -10
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/addcatalogmodelrequest.d.ts +20 -0
- package/dist/commonjs/models/components/addcatalogmodelrequest.d.ts.map +1 -1
- package/dist/commonjs/models/components/addcatalogmodelrequest.js +24 -1
- package/dist/commonjs/models/components/addcatalogmodelrequest.js.map +1 -1
- package/dist/commonjs/models/components/updatecatalogmodelrequest.d.ts +20 -0
- package/dist/commonjs/models/components/updatecatalogmodelrequest.d.ts.map +1 -1
- package/dist/commonjs/models/components/updatecatalogmodelrequest.js +24 -1
- package/dist/commonjs/models/components/updatecatalogmodelrequest.js.map +1 -1
- package/dist/commonjs/models/operations/getmodel.d.ts +16 -0
- package/dist/commonjs/models/operations/getmodel.d.ts.map +1 -1
- package/dist/commonjs/models/operations/getmodel.js +13 -0
- package/dist/commonjs/models/operations/getmodel.js.map +1 -1
- package/dist/commonjs/models/operations/listmodels.d.ts +16 -0
- package/dist/commonjs/models/operations/listmodels.d.ts.map +1 -1
- package/dist/commonjs/models/operations/listmodels.js +13 -0
- package/dist/commonjs/models/operations/listmodels.js.map +1 -1
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/addcatalogmodelrequest.d.ts +20 -0
- package/dist/esm/models/components/addcatalogmodelrequest.d.ts.map +1 -1
- package/dist/esm/models/components/addcatalogmodelrequest.js +21 -0
- package/dist/esm/models/components/addcatalogmodelrequest.js.map +1 -1
- package/dist/esm/models/components/updatecatalogmodelrequest.d.ts +20 -0
- package/dist/esm/models/components/updatecatalogmodelrequest.d.ts.map +1 -1
- package/dist/esm/models/components/updatecatalogmodelrequest.js +21 -0
- package/dist/esm/models/components/updatecatalogmodelrequest.js.map +1 -1
- package/dist/esm/models/operations/getmodel.d.ts +16 -0
- package/dist/esm/models/operations/getmodel.d.ts.map +1 -1
- package/dist/esm/models/operations/getmodel.js +13 -0
- package/dist/esm/models/operations/getmodel.js.map +1 -1
- package/dist/esm/models/operations/listmodels.d.ts +16 -0
- package/dist/esm/models/operations/listmodels.d.ts.map +1 -1
- package/dist/esm/models/operations/listmodels.js +13 -0
- package/dist/esm/models/operations/listmodels.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/addcatalogmodelrequest.ts +52 -0
- package/src/models/components/updatecatalogmodelrequest.ts +63 -0
- package/src/models/operations/getmodel.ts +28 -0
- package/src/models/operations/listmodels.ts +28 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52917,9 +52917,9 @@ var init_config = __esm(() => {
|
|
|
52917
52917
|
SDK_METADATA = {
|
|
52918
52918
|
language: "typescript",
|
|
52919
52919
|
openapiDocVersion: "1.1.0",
|
|
52920
|
-
sdkVersion: "0.54.
|
|
52920
|
+
sdkVersion: "0.54.33",
|
|
52921
52921
|
genVersion: "2.937.18",
|
|
52922
|
-
userAgent: "speakeasy-sdk/typescript 0.54.
|
|
52922
|
+
userAgent: "speakeasy-sdk/typescript 0.54.33 2.937.18 1.1.0 @meetkai/mka1"
|
|
52923
52923
|
};
|
|
52924
52924
|
});
|
|
52925
52925
|
|
|
@@ -54717,6 +54717,37 @@ var init_activateregistryentryrequest = __esm(() => {
|
|
|
54717
54717
|
});
|
|
54718
54718
|
});
|
|
54719
54719
|
|
|
54720
|
+
// src/types/rfcdate.ts
|
|
54721
|
+
class RFCDate {
|
|
54722
|
+
serialized;
|
|
54723
|
+
static today() {
|
|
54724
|
+
return new RFCDate(new Date);
|
|
54725
|
+
}
|
|
54726
|
+
constructor(date4) {
|
|
54727
|
+
if (typeof date4 === "string" && !dateRE.test(date4)) {
|
|
54728
|
+
throw new RangeError("RFCDate: date strings must be in the format YYYY-MM-DD: " + date4);
|
|
54729
|
+
}
|
|
54730
|
+
const value = new Date(date4);
|
|
54731
|
+
if (isNaN(+value)) {
|
|
54732
|
+
throw new RangeError("RFCDate: invalid date provided: " + date4);
|
|
54733
|
+
}
|
|
54734
|
+
this.serialized = value.toISOString().slice(0, "YYYY-MM-DD".length);
|
|
54735
|
+
if (!dateRE.test(this.serialized)) {
|
|
54736
|
+
throw new TypeError(`RFCDate: failed to build valid date with given value: ${date4} serialized to ${this.serialized}`);
|
|
54737
|
+
}
|
|
54738
|
+
}
|
|
54739
|
+
toJSON() {
|
|
54740
|
+
return this.toString();
|
|
54741
|
+
}
|
|
54742
|
+
toString() {
|
|
54743
|
+
return this.serialized;
|
|
54744
|
+
}
|
|
54745
|
+
}
|
|
54746
|
+
var dateRE;
|
|
54747
|
+
var init_rfcdate = __esm(() => {
|
|
54748
|
+
dateRE = /^\d{4}-\d{2}-\d{2}$/;
|
|
54749
|
+
});
|
|
54750
|
+
|
|
54720
54751
|
// src/models/components/autoendpoint.ts
|
|
54721
54752
|
var AutoEndpoint, AutoEndpoint$inboundSchema, AutoEndpoint$outboundSchema;
|
|
54722
54753
|
var init_autoendpoint = __esm(() => {
|
|
@@ -54734,9 +54765,10 @@ var init_autoendpoint = __esm(() => {
|
|
|
54734
54765
|
});
|
|
54735
54766
|
|
|
54736
54767
|
// src/models/components/addcatalogmodelrequest.ts
|
|
54737
|
-
var ApiProviderType, AddCatalogModelRequestInput, AddCatalogModelRequestOutput, Scope, Modality, AddCatalogModelRequestHealthCheckMethod, HealthCheckMethod, ApiProviderType$inboundSchema, ApiProviderType$outboundSchema, AddCatalogModelRequestStrategies4$inboundSchema, AddCatalogModelRequestStrategies4$outboundSchema, AddCatalogModelRequestStrategies3$inboundSchema, AddCatalogModelRequestStrategies3$outboundSchema, AddCatalogModelRequestStrategies2$inboundSchema, AddCatalogModelRequestStrategies2$outboundSchema, AddCatalogModelRequestStrategies1$inboundSchema, AddCatalogModelRequestStrategies1$outboundSchema, StrategiesStrategies$inboundSchema, StrategiesStrategies$outboundSchema, Strategies4$inboundSchema, Strategies4$outboundSchema, Strategies3$inboundSchema, Strategies3$outboundSchema, Strategies2$inboundSchema, Strategies2$outboundSchema, Strategies1$inboundSchema, Strategies1$outboundSchema, Strategies$inboundSchema, Strategies$outboundSchema, Auth4$inboundSchema, Auth4$outboundSchema, Auth3$inboundSchema, Auth3$outboundSchema, Auth2$inboundSchema, Auth2$outboundSchema, Auth1$inboundSchema, Auth1$outboundSchema, Auth$inboundSchema, Auth$outboundSchema, AddCatalogModelRequestInput$inboundSchema, AddCatalogModelRequestInput$outboundSchema, AddCatalogModelRequestOutput$inboundSchema, AddCatalogModelRequestOutput$outboundSchema, AddCatalogModelRequestModalities$inboundSchema, AddCatalogModelRequestModalities$outboundSchema, MaxImageResolution$inboundSchema, MaxImageResolution$outboundSchema, MinImageResolution$inboundSchema, MinImageResolution$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, Scope$inboundSchema, Scope$outboundSchema, Queue$inboundSchema, Queue$outboundSchema, RateLimits$inboundSchema, RateLimits$outboundSchema, Concurrency$inboundSchema, Concurrency$outboundSchema, DefaultParams$inboundSchema, DefaultParams$outboundSchema, Trigger4$inboundSchema, Trigger4$outboundSchema, Trigger3$inboundSchema, Trigger3$outboundSchema, Trigger2$inboundSchema, Trigger2$outboundSchema, Modality$inboundSchema, Modality$outboundSchema, Trigger1$inboundSchema, Trigger1$outboundSchema, Trigger$inboundSchema, Trigger$outboundSchema, RerouteRules$inboundSchema, RerouteRules$outboundSchema, Dimensions2$inboundSchema, Dimensions2$outboundSchema, Dimensions$inboundSchema, Dimensions$outboundSchema, EmbeddingLimits$inboundSchema, EmbeddingLimits$outboundSchema, AddCatalogModelRequestHealthCheckMethod$inboundSchema, AddCatalogModelRequestHealthCheckMethod$outboundSchema, HealthCheck3$inboundSchema, HealthCheck3$outboundSchema, HealthCheckMethod$inboundSchema, HealthCheckMethod$outboundSchema, HealthCheck2$inboundSchema, HealthCheck2$outboundSchema, HealthCheck1$inboundSchema, HealthCheck1$outboundSchema, HealthCheck$inboundSchema, HealthCheck$outboundSchema, AddCatalogModelRequest$inboundSchema, AddCatalogModelRequest$outboundSchema;
|
|
54768
|
+
var ApiProviderType, AddCatalogModelRequestInput, AddCatalogModelRequestOutput, Scope, Modality, AddCatalogModelRequestHealthCheckMethod, HealthCheckMethod, ApiProviderType$inboundSchema, ApiProviderType$outboundSchema, AddCatalogModelRequestStrategies4$inboundSchema, AddCatalogModelRequestStrategies4$outboundSchema, AddCatalogModelRequestStrategies3$inboundSchema, AddCatalogModelRequestStrategies3$outboundSchema, AddCatalogModelRequestStrategies2$inboundSchema, AddCatalogModelRequestStrategies2$outboundSchema, AddCatalogModelRequestStrategies1$inboundSchema, AddCatalogModelRequestStrategies1$outboundSchema, StrategiesStrategies$inboundSchema, StrategiesStrategies$outboundSchema, Strategies4$inboundSchema, Strategies4$outboundSchema, Strategies3$inboundSchema, Strategies3$outboundSchema, Strategies2$inboundSchema, Strategies2$outboundSchema, Strategies1$inboundSchema, Strategies1$outboundSchema, Strategies$inboundSchema, Strategies$outboundSchema, Auth4$inboundSchema, Auth4$outboundSchema, Auth3$inboundSchema, Auth3$outboundSchema, Auth2$inboundSchema, Auth2$outboundSchema, Auth1$inboundSchema, Auth1$outboundSchema, Auth$inboundSchema, Auth$outboundSchema, AddCatalogModelRequestInput$inboundSchema, AddCatalogModelRequestInput$outboundSchema, AddCatalogModelRequestOutput$inboundSchema, AddCatalogModelRequestOutput$outboundSchema, AddCatalogModelRequestModalities$inboundSchema, AddCatalogModelRequestModalities$outboundSchema, MaxImageResolution$inboundSchema, MaxImageResolution$outboundSchema, MinImageResolution$inboundSchema, MinImageResolution$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, Scope$inboundSchema, Scope$outboundSchema, Queue$inboundSchema, Queue$outboundSchema, RateLimits$inboundSchema, RateLimits$outboundSchema, Concurrency$inboundSchema, Concurrency$outboundSchema, DefaultParams$inboundSchema, DefaultParams$outboundSchema, Trigger4$inboundSchema, Trigger4$outboundSchema, Trigger3$inboundSchema, Trigger3$outboundSchema, Trigger2$inboundSchema, Trigger2$outboundSchema, Modality$inboundSchema, Modality$outboundSchema, Trigger1$inboundSchema, Trigger1$outboundSchema, Trigger$inboundSchema, Trigger$outboundSchema, RerouteRules$inboundSchema, RerouteRules$outboundSchema, Dimensions2$inboundSchema, Dimensions2$outboundSchema, Dimensions$inboundSchema, Dimensions$outboundSchema, EmbeddingLimits$inboundSchema, EmbeddingLimits$outboundSchema, AddCatalogModelRequestHealthCheckMethod$inboundSchema, AddCatalogModelRequestHealthCheckMethod$outboundSchema, HealthCheck3$inboundSchema, HealthCheck3$outboundSchema, HealthCheckMethod$inboundSchema, HealthCheckMethod$outboundSchema, HealthCheck2$inboundSchema, HealthCheck2$outboundSchema, HealthCheck1$inboundSchema, HealthCheck1$outboundSchema, HealthCheck$inboundSchema, HealthCheck$outboundSchema, ModelCard$inboundSchema, ModelCard$outboundSchema, AddCatalogModelRequest$inboundSchema, AddCatalogModelRequest$outboundSchema;
|
|
54738
54769
|
var init_addcatalogmodelrequest = __esm(() => {
|
|
54739
54770
|
init_esm();
|
|
54771
|
+
init_rfcdate();
|
|
54740
54772
|
init_autoendpoint();
|
|
54741
54773
|
ApiProviderType = {
|
|
54742
54774
|
Groq: "groq",
|
|
@@ -55175,6 +55207,16 @@ var init_addcatalogmodelrequest = __esm(() => {
|
|
|
55175
55207
|
lazyType(() => HealthCheck2$outboundSchema),
|
|
55176
55208
|
lazyType(() => HealthCheck3$outboundSchema)
|
|
55177
55209
|
]);
|
|
55210
|
+
ModelCard$inboundSchema = objectType({
|
|
55211
|
+
parameterCount: numberType().int().optional(),
|
|
55212
|
+
activeParameterCount: numberType().int().optional(),
|
|
55213
|
+
releaseDate: stringType().transform((v2) => new RFCDate(v2)).optional()
|
|
55214
|
+
});
|
|
55215
|
+
ModelCard$outboundSchema = objectType({
|
|
55216
|
+
parameterCount: numberType().int().optional(),
|
|
55217
|
+
activeParameterCount: numberType().int().optional(),
|
|
55218
|
+
releaseDate: instanceOfType(RFCDate).transform((v2) => v2.toString()).optional()
|
|
55219
|
+
});
|
|
55178
55220
|
AddCatalogModelRequest$inboundSchema = objectType({
|
|
55179
55221
|
id: stringType(),
|
|
55180
55222
|
provider: stringType(),
|
|
@@ -55205,7 +55247,8 @@ var init_addcatalogmodelrequest = __esm(() => {
|
|
|
55205
55247
|
lazyType(() => HealthCheck1$inboundSchema),
|
|
55206
55248
|
lazyType(() => HealthCheck2$inboundSchema),
|
|
55207
55249
|
lazyType(() => HealthCheck3$inboundSchema)
|
|
55208
|
-
]).optional()
|
|
55250
|
+
]).optional(),
|
|
55251
|
+
modelCard: lazyType(() => ModelCard$inboundSchema).optional()
|
|
55209
55252
|
});
|
|
55210
55253
|
AddCatalogModelRequest$outboundSchema = objectType({
|
|
55211
55254
|
id: stringType(),
|
|
@@ -55237,7 +55280,8 @@ var init_addcatalogmodelrequest = __esm(() => {
|
|
|
55237
55280
|
lazyType(() => HealthCheck1$outboundSchema),
|
|
55238
55281
|
lazyType(() => HealthCheck2$outboundSchema),
|
|
55239
55282
|
lazyType(() => HealthCheck3$outboundSchema)
|
|
55240
|
-
]).optional()
|
|
55283
|
+
]).optional(),
|
|
55284
|
+
modelCard: lazyType(() => ModelCard$outboundSchema).optional()
|
|
55241
55285
|
});
|
|
55242
55286
|
});
|
|
55243
55287
|
|
|
@@ -78512,9 +78556,10 @@ var init_updateagentschedulerequest = __esm(() => {
|
|
|
78512
78556
|
});
|
|
78513
78557
|
|
|
78514
78558
|
// src/models/components/updatecatalogmodelrequest.ts
|
|
78515
|
-
var UpdateCatalogModelRequestApiProviderType, UpdateCatalogModelRequestInput, UpdateCatalogModelRequestOutput, RateLimitsScope, TriggerModality, UpdateCatalogModelRequestHealthCheck3Method, UpdateCatalogModelRequestHealthCheckMethod, UpdateCatalogModelRequestApiProviderType$inboundSchema, UpdateCatalogModelRequestApiProviderType$outboundSchema, UpdateCatalogModelRequestStrategiesAuth4$inboundSchema, UpdateCatalogModelRequestStrategiesAuth4$outboundSchema, UpdateCatalogModelRequestStrategiesAuth3$inboundSchema, UpdateCatalogModelRequestStrategiesAuth3$outboundSchema, UpdateCatalogModelRequestStrategiesAuth2$inboundSchema, UpdateCatalogModelRequestStrategiesAuth2$outboundSchema, UpdateCatalogModelRequestStrategiesAuth1$inboundSchema, UpdateCatalogModelRequestStrategiesAuth1$outboundSchema, UpdateCatalogModelRequestStrategiesStrategies$inboundSchema, UpdateCatalogModelRequestStrategiesStrategies$outboundSchema, UpdateCatalogModelRequestStrategies4$inboundSchema, UpdateCatalogModelRequestStrategies4$outboundSchema, UpdateCatalogModelRequestStrategies3$inboundSchema, UpdateCatalogModelRequestStrategies3$outboundSchema, UpdateCatalogModelRequestStrategies2$inboundSchema, UpdateCatalogModelRequestStrategies2$outboundSchema, UpdateCatalogModelRequestStrategies1$inboundSchema, UpdateCatalogModelRequestStrategies1$outboundSchema, AuthStrategies$inboundSchema, AuthStrategies$outboundSchema, UpdateCatalogModelRequestAuth4$inboundSchema, UpdateCatalogModelRequestAuth4$outboundSchema, UpdateCatalogModelRequestAuth3$inboundSchema, UpdateCatalogModelRequestAuth3$outboundSchema, UpdateCatalogModelRequestAuth2$inboundSchema, UpdateCatalogModelRequestAuth2$outboundSchema, UpdateCatalogModelRequestAuth1$inboundSchema, UpdateCatalogModelRequestAuth1$outboundSchema, UpdateCatalogModelRequestAuth$inboundSchema, UpdateCatalogModelRequestAuth$outboundSchema, UpdateCatalogModelRequestInput$inboundSchema, UpdateCatalogModelRequestInput$outboundSchema, UpdateCatalogModelRequestOutput$inboundSchema, UpdateCatalogModelRequestOutput$outboundSchema, UpdateCatalogModelRequestModalities$inboundSchema, UpdateCatalogModelRequestModalities$outboundSchema, UpdateCatalogModelRequestMaxImageResolution$inboundSchema, UpdateCatalogModelRequestMaxImageResolution$outboundSchema, UpdateCatalogModelRequestMinImageResolution$inboundSchema, UpdateCatalogModelRequestMinImageResolution$outboundSchema, UpdateCatalogModelRequestCapabilities$inboundSchema, UpdateCatalogModelRequestCapabilities$outboundSchema, RateLimitsScope$inboundSchema, RateLimitsScope$outboundSchema, RateLimitsQueue$inboundSchema, RateLimitsQueue$outboundSchema, UpdateCatalogModelRequestRateLimits$inboundSchema, UpdateCatalogModelRequestRateLimits$outboundSchema, UpdateCatalogModelRequestConcurrency$inboundSchema, UpdateCatalogModelRequestConcurrency$outboundSchema, UpdateCatalogModelRequestDefaultParams$inboundSchema, UpdateCatalogModelRequestDefaultParams$outboundSchema, UpdateCatalogModelRequestTrigger4$inboundSchema, UpdateCatalogModelRequestTrigger4$outboundSchema, UpdateCatalogModelRequestTrigger3$inboundSchema, UpdateCatalogModelRequestTrigger3$outboundSchema, UpdateCatalogModelRequestTrigger2$inboundSchema, UpdateCatalogModelRequestTrigger2$outboundSchema, TriggerModality$inboundSchema, TriggerModality$outboundSchema, UpdateCatalogModelRequestTrigger1$inboundSchema, UpdateCatalogModelRequestTrigger1$outboundSchema, RerouteRulesTrigger$inboundSchema, RerouteRulesTrigger$outboundSchema, UpdateCatalogModelRequestRerouteRules$inboundSchema, UpdateCatalogModelRequestRerouteRules$outboundSchema, UpdateCatalogModelRequestDimensions2$inboundSchema, UpdateCatalogModelRequestDimensions2$outboundSchema, EmbeddingLimitsDimensions$inboundSchema, EmbeddingLimitsDimensions$outboundSchema, UpdateCatalogModelRequestEmbeddingLimits$inboundSchema, UpdateCatalogModelRequestEmbeddingLimits$outboundSchema, UpdateCatalogModelRequestHealthCheck3Method$inboundSchema, UpdateCatalogModelRequestHealthCheck3Method$outboundSchema, UpdateCatalogModelRequestHealthCheck3$inboundSchema, UpdateCatalogModelRequestHealthCheck3$outboundSchema, UpdateCatalogModelRequestHealthCheckMethod$inboundSchema, UpdateCatalogModelRequestHealthCheckMethod$outboundSchema, UpdateCatalogModelRequestHealthCheck2$inboundSchema, UpdateCatalogModelRequestHealthCheck2$outboundSchema, UpdateCatalogModelRequestHealthCheck1$inboundSchema, UpdateCatalogModelRequestHealthCheck1$outboundSchema, UpdateCatalogModelRequestHealthCheck$inboundSchema, UpdateCatalogModelRequestHealthCheck$outboundSchema, UpdateCatalogModelRequest$inboundSchema, UpdateCatalogModelRequest$outboundSchema;
|
|
78559
|
+
var UpdateCatalogModelRequestApiProviderType, UpdateCatalogModelRequestInput, UpdateCatalogModelRequestOutput, RateLimitsScope, TriggerModality, UpdateCatalogModelRequestHealthCheck3Method, UpdateCatalogModelRequestHealthCheckMethod, UpdateCatalogModelRequestApiProviderType$inboundSchema, UpdateCatalogModelRequestApiProviderType$outboundSchema, UpdateCatalogModelRequestStrategiesAuth4$inboundSchema, UpdateCatalogModelRequestStrategiesAuth4$outboundSchema, UpdateCatalogModelRequestStrategiesAuth3$inboundSchema, UpdateCatalogModelRequestStrategiesAuth3$outboundSchema, UpdateCatalogModelRequestStrategiesAuth2$inboundSchema, UpdateCatalogModelRequestStrategiesAuth2$outboundSchema, UpdateCatalogModelRequestStrategiesAuth1$inboundSchema, UpdateCatalogModelRequestStrategiesAuth1$outboundSchema, UpdateCatalogModelRequestStrategiesStrategies$inboundSchema, UpdateCatalogModelRequestStrategiesStrategies$outboundSchema, UpdateCatalogModelRequestStrategies4$inboundSchema, UpdateCatalogModelRequestStrategies4$outboundSchema, UpdateCatalogModelRequestStrategies3$inboundSchema, UpdateCatalogModelRequestStrategies3$outboundSchema, UpdateCatalogModelRequestStrategies2$inboundSchema, UpdateCatalogModelRequestStrategies2$outboundSchema, UpdateCatalogModelRequestStrategies1$inboundSchema, UpdateCatalogModelRequestStrategies1$outboundSchema, AuthStrategies$inboundSchema, AuthStrategies$outboundSchema, UpdateCatalogModelRequestAuth4$inboundSchema, UpdateCatalogModelRequestAuth4$outboundSchema, UpdateCatalogModelRequestAuth3$inboundSchema, UpdateCatalogModelRequestAuth3$outboundSchema, UpdateCatalogModelRequestAuth2$inboundSchema, UpdateCatalogModelRequestAuth2$outboundSchema, UpdateCatalogModelRequestAuth1$inboundSchema, UpdateCatalogModelRequestAuth1$outboundSchema, UpdateCatalogModelRequestAuth$inboundSchema, UpdateCatalogModelRequestAuth$outboundSchema, UpdateCatalogModelRequestInput$inboundSchema, UpdateCatalogModelRequestInput$outboundSchema, UpdateCatalogModelRequestOutput$inboundSchema, UpdateCatalogModelRequestOutput$outboundSchema, UpdateCatalogModelRequestModalities$inboundSchema, UpdateCatalogModelRequestModalities$outboundSchema, UpdateCatalogModelRequestMaxImageResolution$inboundSchema, UpdateCatalogModelRequestMaxImageResolution$outboundSchema, UpdateCatalogModelRequestMinImageResolution$inboundSchema, UpdateCatalogModelRequestMinImageResolution$outboundSchema, UpdateCatalogModelRequestCapabilities$inboundSchema, UpdateCatalogModelRequestCapabilities$outboundSchema, RateLimitsScope$inboundSchema, RateLimitsScope$outboundSchema, RateLimitsQueue$inboundSchema, RateLimitsQueue$outboundSchema, UpdateCatalogModelRequestRateLimits$inboundSchema, UpdateCatalogModelRequestRateLimits$outboundSchema, UpdateCatalogModelRequestConcurrency$inboundSchema, UpdateCatalogModelRequestConcurrency$outboundSchema, UpdateCatalogModelRequestDefaultParams$inboundSchema, UpdateCatalogModelRequestDefaultParams$outboundSchema, UpdateCatalogModelRequestTrigger4$inboundSchema, UpdateCatalogModelRequestTrigger4$outboundSchema, UpdateCatalogModelRequestTrigger3$inboundSchema, UpdateCatalogModelRequestTrigger3$outboundSchema, UpdateCatalogModelRequestTrigger2$inboundSchema, UpdateCatalogModelRequestTrigger2$outboundSchema, TriggerModality$inboundSchema, TriggerModality$outboundSchema, UpdateCatalogModelRequestTrigger1$inboundSchema, UpdateCatalogModelRequestTrigger1$outboundSchema, RerouteRulesTrigger$inboundSchema, RerouteRulesTrigger$outboundSchema, UpdateCatalogModelRequestRerouteRules$inboundSchema, UpdateCatalogModelRequestRerouteRules$outboundSchema, UpdateCatalogModelRequestDimensions2$inboundSchema, UpdateCatalogModelRequestDimensions2$outboundSchema, EmbeddingLimitsDimensions$inboundSchema, EmbeddingLimitsDimensions$outboundSchema, UpdateCatalogModelRequestEmbeddingLimits$inboundSchema, UpdateCatalogModelRequestEmbeddingLimits$outboundSchema, UpdateCatalogModelRequestHealthCheck3Method$inboundSchema, UpdateCatalogModelRequestHealthCheck3Method$outboundSchema, UpdateCatalogModelRequestHealthCheck3$inboundSchema, UpdateCatalogModelRequestHealthCheck3$outboundSchema, UpdateCatalogModelRequestHealthCheckMethod$inboundSchema, UpdateCatalogModelRequestHealthCheckMethod$outboundSchema, UpdateCatalogModelRequestHealthCheck2$inboundSchema, UpdateCatalogModelRequestHealthCheck2$outboundSchema, UpdateCatalogModelRequestHealthCheck1$inboundSchema, UpdateCatalogModelRequestHealthCheck1$outboundSchema, UpdateCatalogModelRequestHealthCheck$inboundSchema, UpdateCatalogModelRequestHealthCheck$outboundSchema, UpdateCatalogModelRequestModelCard$inboundSchema, UpdateCatalogModelRequestModelCard$outboundSchema, UpdateCatalogModelRequest$inboundSchema, UpdateCatalogModelRequest$outboundSchema;
|
|
78516
78560
|
var init_updatecatalogmodelrequest = __esm(() => {
|
|
78517
78561
|
init_esm();
|
|
78562
|
+
init_rfcdate();
|
|
78518
78563
|
init_autoendpoint();
|
|
78519
78564
|
UpdateCatalogModelRequestApiProviderType = {
|
|
78520
78565
|
Groq: "groq",
|
|
@@ -78959,6 +79004,16 @@ var init_updatecatalogmodelrequest = __esm(() => {
|
|
|
78959
79004
|
lazyType(() => UpdateCatalogModelRequestHealthCheck2$outboundSchema),
|
|
78960
79005
|
lazyType(() => UpdateCatalogModelRequestHealthCheck3$outboundSchema)
|
|
78961
79006
|
]);
|
|
79007
|
+
UpdateCatalogModelRequestModelCard$inboundSchema = objectType({
|
|
79008
|
+
parameterCount: numberType().int().optional(),
|
|
79009
|
+
activeParameterCount: numberType().int().optional(),
|
|
79010
|
+
releaseDate: stringType().transform((v2) => new RFCDate(v2)).optional()
|
|
79011
|
+
});
|
|
79012
|
+
UpdateCatalogModelRequestModelCard$outboundSchema = objectType({
|
|
79013
|
+
parameterCount: numberType().int().optional(),
|
|
79014
|
+
activeParameterCount: numberType().int().optional(),
|
|
79015
|
+
releaseDate: instanceOfType(RFCDate).transform((v2) => v2.toString()).optional()
|
|
79016
|
+
});
|
|
78962
79017
|
UpdateCatalogModelRequest$inboundSchema = objectType({
|
|
78963
79018
|
provider: stringType().optional(),
|
|
78964
79019
|
modelId: stringType().optional(),
|
|
@@ -78989,6 +79044,7 @@ var init_updatecatalogmodelrequest = __esm(() => {
|
|
|
78989
79044
|
lazyType(() => UpdateCatalogModelRequestHealthCheck2$inboundSchema),
|
|
78990
79045
|
lazyType(() => UpdateCatalogModelRequestHealthCheck3$inboundSchema)
|
|
78991
79046
|
])).optional(),
|
|
79047
|
+
modelCard: nullableType(lazyType(() => UpdateCatalogModelRequestModelCard$inboundSchema)).optional(),
|
|
78992
79048
|
id: stringType()
|
|
78993
79049
|
});
|
|
78994
79050
|
UpdateCatalogModelRequest$outboundSchema = objectType({
|
|
@@ -79021,6 +79077,7 @@ var init_updatecatalogmodelrequest = __esm(() => {
|
|
|
79021
79077
|
lazyType(() => UpdateCatalogModelRequestHealthCheck2$outboundSchema),
|
|
79022
79078
|
lazyType(() => UpdateCatalogModelRequestHealthCheck3$outboundSchema)
|
|
79023
79079
|
])).optional(),
|
|
79080
|
+
modelCard: nullableType(lazyType(() => UpdateCatalogModelRequestModelCard$outboundSchema)).optional(),
|
|
79024
79081
|
id: stringType()
|
|
79025
79082
|
});
|
|
79026
79083
|
});
|
|
@@ -96845,6 +96902,7 @@ var ModelType, GetModelRequest$inboundSchema, GetModelRequest$outboundSchema, Mo
|
|
|
96845
96902
|
var init_getmodel = __esm(() => {
|
|
96846
96903
|
init_esm();
|
|
96847
96904
|
init_primitives();
|
|
96905
|
+
init_rfcdate();
|
|
96848
96906
|
ModelType = {
|
|
96849
96907
|
Llm: "llm",
|
|
96850
96908
|
Embeddings: "embeddings",
|
|
@@ -96898,13 +96956,19 @@ var init_getmodel = __esm(() => {
|
|
|
96898
96956
|
model_type: ModelType$inboundSchema,
|
|
96899
96957
|
input_modalities: arrayType(stringType()),
|
|
96900
96958
|
output_modalities: arrayType(stringType()),
|
|
96959
|
+
parameter_count: nullableType(numberType().int()),
|
|
96960
|
+
active_parameter_count: nullableType(numberType().int()),
|
|
96961
|
+
release_date: nullableType(stringType().transform((v2) => new RFCDate(v2))),
|
|
96901
96962
|
capabilities: lazyType(() => Capabilities$inboundSchema2)
|
|
96902
96963
|
}).transform((v2) => {
|
|
96903
96964
|
return remap(v2, {
|
|
96904
96965
|
owned_by: "ownedBy",
|
|
96905
96966
|
model_type: "modelType",
|
|
96906
96967
|
input_modalities: "inputModalities",
|
|
96907
|
-
output_modalities: "outputModalities"
|
|
96968
|
+
output_modalities: "outputModalities",
|
|
96969
|
+
parameter_count: "parameterCount",
|
|
96970
|
+
active_parameter_count: "activeParameterCount",
|
|
96971
|
+
release_date: "releaseDate"
|
|
96908
96972
|
});
|
|
96909
96973
|
});
|
|
96910
96974
|
GetModelResponseBody$outboundSchema = objectType({
|
|
@@ -96915,13 +96979,19 @@ var init_getmodel = __esm(() => {
|
|
|
96915
96979
|
modelType: ModelType$outboundSchema,
|
|
96916
96980
|
inputModalities: arrayType(stringType()),
|
|
96917
96981
|
outputModalities: arrayType(stringType()),
|
|
96982
|
+
parameterCount: nullableType(numberType().int()),
|
|
96983
|
+
activeParameterCount: nullableType(numberType().int()),
|
|
96984
|
+
releaseDate: nullableType(instanceOfType(RFCDate).transform((v2) => v2.toString())),
|
|
96918
96985
|
capabilities: lazyType(() => Capabilities$outboundSchema2)
|
|
96919
96986
|
}).transform((v2) => {
|
|
96920
96987
|
return remap(v2, {
|
|
96921
96988
|
ownedBy: "owned_by",
|
|
96922
96989
|
modelType: "model_type",
|
|
96923
96990
|
inputModalities: "input_modalities",
|
|
96924
|
-
outputModalities: "output_modalities"
|
|
96991
|
+
outputModalities: "output_modalities",
|
|
96992
|
+
parameterCount: "parameter_count",
|
|
96993
|
+
activeParameterCount: "active_parameter_count",
|
|
96994
|
+
releaseDate: "release_date"
|
|
96925
96995
|
});
|
|
96926
96996
|
});
|
|
96927
96997
|
});
|
|
@@ -102083,6 +102153,7 @@ var ListModelsModelType, ListModelsRequest$inboundSchema, ListModelsRequest$outb
|
|
|
102083
102153
|
var init_listmodels = __esm(() => {
|
|
102084
102154
|
init_esm();
|
|
102085
102155
|
init_primitives();
|
|
102156
|
+
init_rfcdate();
|
|
102086
102157
|
ListModelsModelType = {
|
|
102087
102158
|
Llm: "llm",
|
|
102088
102159
|
Embeddings: "embeddings",
|
|
@@ -102132,13 +102203,19 @@ var init_listmodels = __esm(() => {
|
|
|
102132
102203
|
model_type: ListModelsModelType$inboundSchema,
|
|
102133
102204
|
input_modalities: arrayType(stringType()),
|
|
102134
102205
|
output_modalities: arrayType(stringType()),
|
|
102206
|
+
parameter_count: nullableType(numberType().int()),
|
|
102207
|
+
active_parameter_count: nullableType(numberType().int()),
|
|
102208
|
+
release_date: nullableType(stringType().transform((v2) => new RFCDate(v2))),
|
|
102135
102209
|
capabilities: lazyType(() => ListModelsCapabilities$inboundSchema)
|
|
102136
102210
|
}).transform((v2) => {
|
|
102137
102211
|
return remap(v2, {
|
|
102138
102212
|
owned_by: "ownedBy",
|
|
102139
102213
|
model_type: "modelType",
|
|
102140
102214
|
input_modalities: "inputModalities",
|
|
102141
|
-
output_modalities: "outputModalities"
|
|
102215
|
+
output_modalities: "outputModalities",
|
|
102216
|
+
parameter_count: "parameterCount",
|
|
102217
|
+
active_parameter_count: "activeParameterCount",
|
|
102218
|
+
release_date: "releaseDate"
|
|
102142
102219
|
});
|
|
102143
102220
|
});
|
|
102144
102221
|
ListModelsData$outboundSchema = objectType({
|
|
@@ -102149,13 +102226,19 @@ var init_listmodels = __esm(() => {
|
|
|
102149
102226
|
modelType: ListModelsModelType$outboundSchema,
|
|
102150
102227
|
inputModalities: arrayType(stringType()),
|
|
102151
102228
|
outputModalities: arrayType(stringType()),
|
|
102229
|
+
parameterCount: nullableType(numberType().int()),
|
|
102230
|
+
activeParameterCount: nullableType(numberType().int()),
|
|
102231
|
+
releaseDate: nullableType(instanceOfType(RFCDate).transform((v2) => v2.toString())),
|
|
102152
102232
|
capabilities: lazyType(() => ListModelsCapabilities$outboundSchema)
|
|
102153
102233
|
}).transform((v2) => {
|
|
102154
102234
|
return remap(v2, {
|
|
102155
102235
|
ownedBy: "owned_by",
|
|
102156
102236
|
modelType: "model_type",
|
|
102157
102237
|
inputModalities: "input_modalities",
|
|
102158
|
-
outputModalities: "output_modalities"
|
|
102238
|
+
outputModalities: "output_modalities",
|
|
102239
|
+
parameterCount: "parameter_count",
|
|
102240
|
+
activeParameterCount: "active_parameter_count",
|
|
102241
|
+
releaseDate: "release_date"
|
|
102159
102242
|
});
|
|
102160
102243
|
});
|
|
102161
102244
|
ListModelsResponseBody$inboundSchema = objectType({
|
|
@@ -153728,7 +153811,7 @@ Aggregate sandbox usage (session lifecycle, execution, and workspace operations)
|
|
|
153728
153811
|
function createMCPServer(deps) {
|
|
153729
153812
|
const server = new McpServer({
|
|
153730
153813
|
name: "SDK",
|
|
153731
|
-
version: "0.54.
|
|
153814
|
+
version: "0.54.33"
|
|
153732
153815
|
});
|
|
153733
153816
|
const client = new SDKCore({
|
|
153734
153817
|
bearerAuth: deps.bearerAuth,
|
|
@@ -155686,7 +155769,7 @@ var routes = rn({
|
|
|
155686
155769
|
var app = Ve(routes, {
|
|
155687
155770
|
name: "mcp",
|
|
155688
155771
|
versionInfo: {
|
|
155689
|
-
currentVersion: "0.54.
|
|
155772
|
+
currentVersion: "0.54.33"
|
|
155690
155773
|
}
|
|
155691
155774
|
});
|
|
155692
155775
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -155694,5 +155777,5 @@ export {
|
|
|
155694
155777
|
app
|
|
155695
155778
|
};
|
|
155696
155779
|
|
|
155697
|
-
//# debugId=
|
|
155780
|
+
//# debugId=9DB87F8BD0CCB49164756E2164756E21
|
|
155698
155781
|
//# sourceMappingURL=mcp-server.js.map
|