mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
8 lines
149 B
Dart
8 lines
149 B
Dart
// TODO: Put more thoughts into task status vs. benchmark task status
|
|
enum BenchmarkTaskStatus {
|
|
notStarted,
|
|
inProgress,
|
|
success,
|
|
failure,
|
|
}
|