OpenAIStreamChatCompletionChoiceDeltaModel constructor

const OpenAIStreamChatCompletionChoiceDeltaModel({
  1. required String? role,
  2. required String? content,
})

This contains the role and content of the choice of the chat response.

Implementation

const OpenAIStreamChatCompletionChoiceDeltaModel({
  required this.role,
  required this.content,
});