diff --git a/proto/ModelConfig.proto b/proto/ModelConfig.proto index 83f72c137bdf5e55f28be908321bd2ccd6c906fe..d7f00fba474cc1343d54caca8c926f59e10d08c3 100644 --- a/proto/ModelConfig.proto +++ b/proto/ModelConfig.proto @@ -198,6 +198,11 @@ message RowConvConfig { required uint32 context_length = 1; } +message SliceConfig { + required uint32 start = 1; + required uint32 end = 2; +} + message ProjectionConfig { required string type = 1; required string name = 2; @@ -218,6 +223,9 @@ message ProjectionConfig { // For pool optional PoolConfig pool_conf = 12; + + // For slice + repeated SliceConfig slice = 13; } message OperatorConfig {