FakeLLM constructor

FakeLLM({
  1. required List<String> responses,
})

Fake LLM for testing. You can pass in a list of responses to return in order when called.

Implementation

FakeLLM({
  required this.responses,
}) : super(defaultOptions: const FakeLLMOptions());