mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
Rename benchmark_service directory to benchmark
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class BenchmarkStepRequestBody {
|
||||
final String? input;
|
||||
|
||||
BenchmarkStepRequestBody({required this.input});
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
if (input == null) {
|
||||
return {};
|
||||
}
|
||||
return {'input': input};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user