Interface ChatCompletionChunkCallback


public interface ChatCompletionChunkCallback
Interface for handling streaming chat completion requests.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when a new message chunk of the response is received.
    void
    Called when the entire response is received.
    void
    Called when an error occurs during the streaming request.
  • Method Details

    • onChunkReceived

      void onChunkReceived(MessageChunk chunk)
      Called when a new message chunk of the response is received.
      Parameters:
      chunk - The received chunk
    • onComplete

      void onComplete()
      Called when the entire response is received.
    • onError

      void onError(Exception e)
      Called when an error occurs during the streaming request.
      Parameters:
      e - The exception representing the error