make batch optional again

This commit is contained in:
OlivierDehaene 2023-04-19 16:25:49 +02:00
parent 118f33d9dc
commit 94ff101fd3

View File

@ -132,7 +132,7 @@ message PrefillResponse {
/// Generation
repeated Generation generations = 1;
/// Next batch (cached)
Batch batch = 2;
optional Batch batch = 2;
}
message DecodeRequest {
@ -144,5 +144,5 @@ message DecodeResponse {
/// Decodes
repeated Generation generations = 1;
/// Next batch (cached)
Batch batch = 2;
optional Batch batch = 2;
}