autogpt2 / classic /frontend /lib /models /benchmark /benchmark_step_request_body.dart
seawolf2357's picture
Deploy from GitHub repository
3382f47 verified
raw
history blame contribute delete
226 Bytes
class BenchmarkStepRequestBody {
final String? input;
BenchmarkStepRequestBody({required this.input});
Map<String, dynamic> toJson() {
if (input == null) {
return {};
}
return {'input': input};
}
}