RawTransformer<I, O> constructor

const RawTransformer<I, O>({
  1. required ConnectedChatModel llm,
  2. String? user,
  3. required String instructions,
  4. List<Tool> tools = const [],
  5. int maxRecursiveToolCalls = 1,
})

Implementation

const RawTransformer({
  required this.llm,
  this.user,
  required this.instructions,
  this.tools = const [],
  this.maxRecursiveToolCalls = 1,
});