aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nicholas Tindle <nicholas.tindle@agpt.co> 2023-11-09 01:40:35 -0600
committerGravatar Nicholas Tindle <nicholas.tindle@agpt.co> 2023-11-09 01:40:35 -0600
commit6d4e7b614db29a715069985a2afaeac6850e35b7 (patch)
treecf8fe190d0fe1220798c98f2216039c45db4392c
parentrefactor: Improve debug tooling (diff)
downloadAuto-GPT-6d4e7b614db29a715069985a2afaeac6850e35b7.tar.gz
Auto-GPT-6d4e7b614db29a715069985a2afaeac6850e35b7.tar.bz2
Auto-GPT-6d4e7b614db29a715069985a2afaeac6850e35b7.zip
fix: Fix missing categories in data_types.py
- Added GAIA_1 category to existing categories in data_types.py - Added GAIA_2 category to existing categories in data_types.py - Added GAIA_3 category to existing categories in data_types.py
-rw-r--r--benchmark/agbenchmark/utils/data_types.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/agbenchmark/utils/data_types.py b/benchmark/agbenchmark/utils/data_types.py
index 33292be31..71feba6ce 100644
--- a/benchmark/agbenchmark/utils/data_types.py
+++ b/benchmark/agbenchmark/utils/data_types.py
@@ -175,6 +175,9 @@ class Category(str, Enum):
CODING = "coding"
SCRAPE_SYNTHESIZE = "scrape_synthesize"
VALIDATION = "validation"
+ GAIA_1 = "GAIA_1"
+ GAIA_2 = "GAIA_2"
+ GAIA_3 = "GAIA_3"
class ChallengeData(BaseModel):