1syntax = "proto3"; 2 3package tensorflow; 4 5import "tensorflow/core/protobuf/struct.proto"; 6 7option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto"; 8 9// Metadata for CompositeTensorVariant, used when serializing as Variant. 10// 11// We define a new message here (rather than directly using TypeSpecProto for 12// the metadata string) to retain flexibility to change the metadata encoding 13// to support additional features. 14message CompositeTensorVariantMetadata { 15 TypeSpecProto type_spec_proto = 1; 16} 17