ChatResponseModel.mockData constructor

ChatResponseModel.mockData()

Implementation

factory ChatResponseModel.mockData() =>
    const ChatResponseModel(id: '1', usage: UsageModel(), choices: [
      ChoiceModel(
          message: MessageModel(
              role: 'assistant', content: 'Hello! How can I help you'),
          finishReason: 'stop')
    ]);