/// <summary>
 /// Destroy a streaming state without decoding the computed logits.
 /// This can be used if you no longer need the result of an ongoing streaming
 /// inference and don't want to perform a costly decode operation.
 /// </summary>
 public unsafe void DiscardStream()
 {
     NativeImp.DS_DiscardStream(ref _streamingStatePP);
 }