Skip to content

Commit

Permalink
Generative ->Iterative (#107) (#108)
Browse files Browse the repository at this point in the history
* name change

* updated language

* updated with default value

* updated language

Co-authored-by: Neelay Shah <[email protected]>
  • Loading branch information
Tabrizian and nnshah1 authored Nov 19, 2023
1 parent 805dbcf commit a8a7341
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions protobuf/model_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1568,13 +1568,15 @@ message ModelSequenceBatching
//@@
repeated State state = 5;

//@@ .. cpp:var:: bool generative_sequence
//@@
//@@ The sequence batcher is expecting the sequence to be generative. A
//@@ generative sequence is initiated by single request, the sequence
//@@ batcher expects the same request to be "rescheduled" by the model if
//@@ the sequence is continuing.
bool generative_sequence = 6;
//@@ .. cpp:var:: bool iterative_sequence
//@@
//@@ Requests for iterative sequences are processed over a number
//@@ of iterations. An iterative sequence is initiated by a single
//@@ request and is "rescheduled" by the model until completion.
//@@ Requests for inflight requests will be batched together
//@@ and can complete independently. Note this feature
//@@ requires backend support. Default value is false.
bool iterative_sequence = 6;
}

//@@
Expand Down

0 comments on commit a8a7341

Please sign in to comment.