clarifai-web-grpc 11.0.5 → 11.1.1
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/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +632 -0
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +122 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +607 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +632 -0
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +122 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +607 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +98 -0
- package/proto/clarifai/api/resources_pb.js +796 -0
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +34 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +178 -0
- package/proto/clarifai/api/service_pb.d.ts +88 -0
- package/proto/clarifai/api/service_pb.js +747 -0
|
@@ -9018,6 +9018,104 @@ export namespace WorkflowVersionEvaluationTemplate {
|
|
|
9018
9018
|
}
|
|
9019
9019
|
}
|
|
9020
9020
|
|
|
9021
|
+
export class ComputePlaneMetrics extends jspb.Message {
|
|
9022
|
+
getMeta(): ComputeSourceMetadata | undefined;
|
|
9023
|
+
setMeta(value?: ComputeSourceMetadata): ComputePlaneMetrics;
|
|
9024
|
+
hasMeta(): boolean;
|
|
9025
|
+
clearMeta(): ComputePlaneMetrics;
|
|
9026
|
+
|
|
9027
|
+
getCloud(): string;
|
|
9028
|
+
setCloud(value: string): ComputePlaneMetrics;
|
|
9029
|
+
|
|
9030
|
+
getRegion(): string;
|
|
9031
|
+
setRegion(value: string): ComputePlaneMetrics;
|
|
9032
|
+
|
|
9033
|
+
getInstanceType(): string;
|
|
9034
|
+
setInstanceType(value: string): ComputePlaneMetrics;
|
|
9035
|
+
|
|
9036
|
+
getReservationType(): string;
|
|
9037
|
+
setReservationType(value: string): ComputePlaneMetrics;
|
|
9038
|
+
|
|
9039
|
+
getReservationPrice(): number;
|
|
9040
|
+
setReservationPrice(value: number): ComputePlaneMetrics;
|
|
9041
|
+
|
|
9042
|
+
getRuntimeS(): number;
|
|
9043
|
+
setRuntimeS(value: number): ComputePlaneMetrics;
|
|
9044
|
+
|
|
9045
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9046
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): ComputePlaneMetrics;
|
|
9047
|
+
hasTimestamp(): boolean;
|
|
9048
|
+
clearTimestamp(): ComputePlaneMetrics;
|
|
9049
|
+
|
|
9050
|
+
getEventType(): string;
|
|
9051
|
+
setEventType(value: string): ComputePlaneMetrics;
|
|
9052
|
+
|
|
9053
|
+
getGpuMetricsList(): Array<GpuMetrics>;
|
|
9054
|
+
setGpuMetricsList(value: Array<GpuMetrics>): ComputePlaneMetrics;
|
|
9055
|
+
clearGpuMetricsList(): ComputePlaneMetrics;
|
|
9056
|
+
addGpuMetrics(value?: GpuMetrics, index?: number): GpuMetrics;
|
|
9057
|
+
|
|
9058
|
+
getHostname(): string;
|
|
9059
|
+
setHostname(value: string): ComputePlaneMetrics;
|
|
9060
|
+
|
|
9061
|
+
serializeBinary(): Uint8Array;
|
|
9062
|
+
toObject(includeInstance?: boolean): ComputePlaneMetrics.AsObject;
|
|
9063
|
+
static toObject(includeInstance: boolean, msg: ComputePlaneMetrics): ComputePlaneMetrics.AsObject;
|
|
9064
|
+
static serializeBinaryToWriter(message: ComputePlaneMetrics, writer: jspb.BinaryWriter): void;
|
|
9065
|
+
static deserializeBinary(bytes: Uint8Array): ComputePlaneMetrics;
|
|
9066
|
+
static deserializeBinaryFromReader(message: ComputePlaneMetrics, reader: jspb.BinaryReader): ComputePlaneMetrics;
|
|
9067
|
+
}
|
|
9068
|
+
|
|
9069
|
+
export namespace ComputePlaneMetrics {
|
|
9070
|
+
export type AsObject = {
|
|
9071
|
+
meta?: ComputeSourceMetadata.AsObject,
|
|
9072
|
+
cloud: string,
|
|
9073
|
+
region: string,
|
|
9074
|
+
instanceType: string,
|
|
9075
|
+
reservationType: string,
|
|
9076
|
+
reservationPrice: number,
|
|
9077
|
+
runtimeS: number,
|
|
9078
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9079
|
+
eventType: string,
|
|
9080
|
+
gpuMetricsList: Array<GpuMetrics.AsObject>,
|
|
9081
|
+
hostname: string,
|
|
9082
|
+
}
|
|
9083
|
+
}
|
|
9084
|
+
|
|
9085
|
+
export class GpuMetrics extends jspb.Message {
|
|
9086
|
+
getUuid(): string;
|
|
9087
|
+
setUuid(value: string): GpuMetrics;
|
|
9088
|
+
|
|
9089
|
+
getModelName(): string;
|
|
9090
|
+
setModelName(value: string): GpuMetrics;
|
|
9091
|
+
|
|
9092
|
+
getUtilizationPct(): number;
|
|
9093
|
+
setUtilizationPct(value: number): GpuMetrics;
|
|
9094
|
+
|
|
9095
|
+
getTensorUtilizationPct(): number;
|
|
9096
|
+
setTensorUtilizationPct(value: number): GpuMetrics;
|
|
9097
|
+
|
|
9098
|
+
getMemoryUtilizationPct(): number;
|
|
9099
|
+
setMemoryUtilizationPct(value: number): GpuMetrics;
|
|
9100
|
+
|
|
9101
|
+
serializeBinary(): Uint8Array;
|
|
9102
|
+
toObject(includeInstance?: boolean): GpuMetrics.AsObject;
|
|
9103
|
+
static toObject(includeInstance: boolean, msg: GpuMetrics): GpuMetrics.AsObject;
|
|
9104
|
+
static serializeBinaryToWriter(message: GpuMetrics, writer: jspb.BinaryWriter): void;
|
|
9105
|
+
static deserializeBinary(bytes: Uint8Array): GpuMetrics;
|
|
9106
|
+
static deserializeBinaryFromReader(message: GpuMetrics, reader: jspb.BinaryReader): GpuMetrics;
|
|
9107
|
+
}
|
|
9108
|
+
|
|
9109
|
+
export namespace GpuMetrics {
|
|
9110
|
+
export type AsObject = {
|
|
9111
|
+
uuid: string,
|
|
9112
|
+
modelName: string,
|
|
9113
|
+
utilizationPct: number,
|
|
9114
|
+
tensorUtilizationPct: number,
|
|
9115
|
+
memoryUtilizationPct: number,
|
|
9116
|
+
}
|
|
9117
|
+
}
|
|
9118
|
+
|
|
9021
9119
|
export class LogEntry extends jspb.Message {
|
|
9022
9120
|
getMessage(): string;
|
|
9023
9121
|
setMessage(value: string): LogEntry;
|