mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
13 lines
226 B
Dart
13 lines
226 B
Dart
class BenchmarkStepRequestBody {
|
|
final String? input;
|
|
|
|
BenchmarkStepRequestBody({required this.input});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
if (input == null) {
|
|
return {};
|
|
}
|
|
return {'input': input};
|
|
}
|
|
}
|