mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 14:04:27 +01:00
8 lines
148 B
Dart
8 lines
148 B
Dart
// TODO: Put more thought into task status vs. benchmark task status
|
|
enum BenchmarkTaskStatus {
|
|
notStarted,
|
|
inProgress,
|
|
success,
|
|
failure,
|
|
}
|