@meetkai/mka1 0.53.10 → 0.53.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.
- package/bin/mcp-server.js +48 -20
- package/bin/mcp-server.js.map +7 -7
- 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/computeaccelerator.d.ts +68 -8
- package/dist/commonjs/models/components/computeaccelerator.d.ts.map +1 -1
- package/dist/commonjs/models/components/computeaccelerator.js +49 -9
- package/dist/commonjs/models/components/computeaccelerator.js.map +1 -1
- package/dist/commonjs/models/components/computerequest.d.ts +8 -0
- package/dist/commonjs/models/components/computerequest.d.ts.map +1 -1
- package/dist/commonjs/models/components/computerequest.js +4 -0
- package/dist/commonjs/models/components/computerequest.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/computeaccelerator.d.ts +68 -8
- package/dist/esm/models/components/computeaccelerator.d.ts.map +1 -1
- package/dist/esm/models/components/computeaccelerator.js +46 -8
- package/dist/esm/models/components/computeaccelerator.js.map +1 -1
- package/dist/esm/models/components/computerequest.d.ts +8 -0
- package/dist/esm/models/components/computerequest.d.ts.map +1 -1
- package/dist/esm/models/components/computerequest.js +4 -0
- package/dist/esm/models/components/computerequest.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/computeaccelerator.ts +114 -16
- package/src/models/components/computerequest.ts +12 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52876,9 +52876,9 @@ var init_config = __esm(() => {
|
|
|
52876
52876
|
SDK_METADATA = {
|
|
52877
52877
|
language: "typescript",
|
|
52878
52878
|
openapiDocVersion: "1.1.0",
|
|
52879
|
-
sdkVersion: "0.53.
|
|
52879
|
+
sdkVersion: "0.53.11",
|
|
52880
52880
|
genVersion: "2.928.0",
|
|
52881
|
-
userAgent: "speakeasy-sdk/typescript 0.53.
|
|
52881
|
+
userAgent: "speakeasy-sdk/typescript 0.53.11 2.928.0 1.1.0 @meetkai/mka1"
|
|
52882
52882
|
};
|
|
52883
52883
|
});
|
|
52884
52884
|
|
|
@@ -59759,42 +59759,66 @@ var init_compoundfilter = __esm(() => {
|
|
|
59759
59759
|
});
|
|
59760
59760
|
|
|
59761
59761
|
// src/models/components/computeaccelerator.ts
|
|
59762
|
-
var Vendor, Vendor$inboundSchema, Vendor$outboundSchema, ComputeAccelerator$inboundSchema, ComputeAccelerator$outboundSchema;
|
|
59762
|
+
var HardwareClass, Vendor, HardwareClass$inboundSchema, HardwareClass$outboundSchema, Vcpu$inboundSchema, Vcpu$outboundSchema, Vendor$inboundSchema, Vendor$outboundSchema, ComputeAccelerator$inboundSchema, ComputeAccelerator$outboundSchema;
|
|
59763
59763
|
var init_computeaccelerator = __esm(() => {
|
|
59764
59764
|
init_esm();
|
|
59765
59765
|
init_primitives();
|
|
59766
|
+
HardwareClass = {
|
|
59767
|
+
Gpu: "gpu",
|
|
59768
|
+
Cpu: "cpu"
|
|
59769
|
+
};
|
|
59766
59770
|
Vendor = {
|
|
59767
59771
|
Nvidia: "nvidia",
|
|
59768
59772
|
Amd: "amd"
|
|
59769
59773
|
};
|
|
59774
|
+
HardwareClass$inboundSchema = nativeEnumType(HardwareClass);
|
|
59775
|
+
HardwareClass$outboundSchema = HardwareClass$inboundSchema;
|
|
59776
|
+
Vcpu$inboundSchema = objectType({
|
|
59777
|
+
max: numberType().int(),
|
|
59778
|
+
min: numberType().int()
|
|
59779
|
+
});
|
|
59780
|
+
Vcpu$outboundSchema = objectType({
|
|
59781
|
+
max: numberType().int(),
|
|
59782
|
+
min: numberType().int()
|
|
59783
|
+
});
|
|
59770
59784
|
Vendor$inboundSchema = nativeEnumType(Vendor);
|
|
59771
59785
|
Vendor$outboundSchema = Vendor$inboundSchema;
|
|
59772
59786
|
ComputeAccelerator$inboundSchema = objectType({
|
|
59773
59787
|
display_name: stringType(),
|
|
59774
|
-
gpu_counts: arrayType(numberType().int()),
|
|
59775
|
-
|
|
59776
|
-
|
|
59788
|
+
gpu_counts: arrayType(numberType().int()).optional(),
|
|
59789
|
+
hardware_class: HardwareClass$inboundSchema,
|
|
59790
|
+
interconnects: arrayType(stringType()).optional(),
|
|
59791
|
+
memory_gb: numberType().int().optional(),
|
|
59792
|
+
memory_gb_per_vcpu: numberType().int().optional(),
|
|
59777
59793
|
name: stringType(),
|
|
59778
|
-
|
|
59794
|
+
vcpu: lazyType(() => Vcpu$inboundSchema).optional(),
|
|
59795
|
+
vendor: Vendor$inboundSchema.optional()
|
|
59779
59796
|
}).transform((v2) => {
|
|
59780
59797
|
return remap(v2, {
|
|
59781
59798
|
display_name: "displayName",
|
|
59782
59799
|
gpu_counts: "gpuCounts",
|
|
59783
|
-
|
|
59800
|
+
hardware_class: "hardwareClass",
|
|
59801
|
+
memory_gb: "memoryGb",
|
|
59802
|
+
memory_gb_per_vcpu: "memoryGbPerVcpu"
|
|
59784
59803
|
});
|
|
59785
59804
|
});
|
|
59786
59805
|
ComputeAccelerator$outboundSchema = objectType({
|
|
59787
59806
|
displayName: stringType(),
|
|
59788
|
-
gpuCounts: arrayType(numberType().int()),
|
|
59789
|
-
|
|
59790
|
-
|
|
59807
|
+
gpuCounts: arrayType(numberType().int()).optional(),
|
|
59808
|
+
hardwareClass: HardwareClass$outboundSchema,
|
|
59809
|
+
interconnects: arrayType(stringType()).optional(),
|
|
59810
|
+
memoryGb: numberType().int().optional(),
|
|
59811
|
+
memoryGbPerVcpu: numberType().int().optional(),
|
|
59791
59812
|
name: stringType(),
|
|
59792
|
-
|
|
59813
|
+
vcpu: lazyType(() => Vcpu$outboundSchema).optional(),
|
|
59814
|
+
vendor: Vendor$outboundSchema.optional()
|
|
59793
59815
|
}).transform((v2) => {
|
|
59794
59816
|
return remap(v2, {
|
|
59795
59817
|
displayName: "display_name",
|
|
59796
59818
|
gpuCounts: "gpu_counts",
|
|
59797
|
-
|
|
59819
|
+
hardwareClass: "hardware_class",
|
|
59820
|
+
memoryGb: "memory_gb",
|
|
59821
|
+
memoryGbPerVcpu: "memory_gb_per_vcpu"
|
|
59798
59822
|
});
|
|
59799
59823
|
});
|
|
59800
59824
|
});
|
|
@@ -60300,12 +60324,14 @@ var init_computerequest = __esm(() => {
|
|
|
60300
60324
|
ephemeral_disk_gb: numberType().int(),
|
|
60301
60325
|
gpu_count: numberType().int(),
|
|
60302
60326
|
instance_count: numberType().int().optional(),
|
|
60303
|
-
interconnect: stringType().optional()
|
|
60327
|
+
interconnect: stringType().optional(),
|
|
60328
|
+
vcpu_count: numberType().int().optional()
|
|
60304
60329
|
}).transform((v2) => {
|
|
60305
60330
|
return remap(v2, {
|
|
60306
60331
|
ephemeral_disk_gb: "ephemeralDiskGb",
|
|
60307
60332
|
gpu_count: "gpuCount",
|
|
60308
|
-
instance_count: "instanceCount"
|
|
60333
|
+
instance_count: "instanceCount",
|
|
60334
|
+
vcpu_count: "vcpuCount"
|
|
60309
60335
|
});
|
|
60310
60336
|
});
|
|
60311
60337
|
ComputeRequest$outboundSchema = objectType({
|
|
@@ -60313,12 +60339,14 @@ var init_computerequest = __esm(() => {
|
|
|
60313
60339
|
ephemeralDiskGb: numberType().int(),
|
|
60314
60340
|
gpuCount: numberType().int(),
|
|
60315
60341
|
instanceCount: numberType().int().optional(),
|
|
60316
|
-
interconnect: stringType().optional()
|
|
60342
|
+
interconnect: stringType().optional(),
|
|
60343
|
+
vcpuCount: numberType().int().optional()
|
|
60317
60344
|
}).transform((v2) => {
|
|
60318
60345
|
return remap(v2, {
|
|
60319
60346
|
ephemeralDiskGb: "ephemeral_disk_gb",
|
|
60320
60347
|
gpuCount: "gpu_count",
|
|
60321
|
-
instanceCount: "instance_count"
|
|
60348
|
+
instanceCount: "instance_count",
|
|
60349
|
+
vcpuCount: "vcpu_count"
|
|
60322
60350
|
});
|
|
60323
60351
|
});
|
|
60324
60352
|
});
|
|
@@ -137688,7 +137716,7 @@ Aggregate sandbox usage (session lifecycle, execution, and workspace operations)
|
|
|
137688
137716
|
function createMCPServer(deps) {
|
|
137689
137717
|
const server = new McpServer({
|
|
137690
137718
|
name: "SDK",
|
|
137691
|
-
version: "0.53.
|
|
137719
|
+
version: "0.53.11"
|
|
137692
137720
|
});
|
|
137693
137721
|
const client = new SDKCore({
|
|
137694
137722
|
bearerAuth: deps.bearerAuth,
|
|
@@ -139532,7 +139560,7 @@ var routes = rn({
|
|
|
139532
139560
|
var app = Ve(routes, {
|
|
139533
139561
|
name: "mcp",
|
|
139534
139562
|
versionInfo: {
|
|
139535
|
-
currentVersion: "0.53.
|
|
139563
|
+
currentVersion: "0.53.11"
|
|
139536
139564
|
}
|
|
139537
139565
|
});
|
|
139538
139566
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -139540,5 +139568,5 @@ export {
|
|
|
139540
139568
|
app
|
|
139541
139569
|
};
|
|
139542
139570
|
|
|
139543
|
-
//# debugId=
|
|
139571
|
+
//# debugId=0B85A11920E8697264756E2164756E21
|
|
139544
139572
|
//# sourceMappingURL=mcp-server.js.map
|