CodeInterpreterStepCall constructor

const CodeInterpreterStepCall({
  1. required String id,
  2. required String input,
  3. required List<CodeInterpreterOutput> outputs,
})

Implementation

const CodeInterpreterStepCall({
  required this.id,
  required this.input,
  required this.outputs,
});