This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added --test, consolidate files, reports working (#83)
- Loading branch information
1 parent
437e066
commit 8df8290
Showing
18 changed files
with
277 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"workspace": "${os.path.join(Path.home(), 'miniagi')}", | ||
"entry_path": "benchmarks.py", | ||
"home_path": "agent/mini-agi", | ||
"entry_path": "agbenchmark/benchmarks.py", | ||
"cutoff": 60 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 54 additions & 45 deletions
99
regression_tests.json → agbenchmark/regression_tests.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,99 @@ | ||
{ | ||
"TestBasicMemory": { | ||
"TestReadFile": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestReadFile", | ||
"TestWriteFile" | ||
], | ||
"test": "agbenchmark/challenges/memory/m1" | ||
}, | ||
"TestBasicRetrieval": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestWriteFile", | ||
"TestSearch" | ||
], | ||
"test": "agbenchmark/challenges/retrieval/r1" | ||
}, | ||
"TestCreateSimpleWebServer": { | ||
"difficulty": "basic", | ||
"dependencies": [], | ||
"test": "agbenchmark/challenges/code/d3" | ||
"test": "agbenchmark/challenges/interface/read_file", | ||
"success": true | ||
}, | ||
"TestDebugSimpleTypoWithGuidance": { | ||
"TestBasicMemory": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestReadFile", | ||
"TestWriteFile" | ||
], | ||
"test": "agbenchmark/challenges/code/d1" | ||
"test": "agbenchmark/challenges/memory/m1", | ||
"success": true | ||
}, | ||
"TestDebugSimpleTypoWithoutGuidance": { | ||
"difficulty": "medium", | ||
"TestBasicRetrieval": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestDebugSimpleTypoWithGuidance" | ||
"TestWriteFile", | ||
"TestSearch" | ||
], | ||
"test": "agbenchmark/challenges/code/d2" | ||
"test": "agbenchmark/challenges/retrieval/r1", | ||
"success": true | ||
}, | ||
"TestReadFile": { | ||
"TestRememberMultipleIds": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestWriteFile" | ||
"TestBasicMemory" | ||
], | ||
"test": "agbenchmark/challenges/interface/read_file" | ||
"test": "agbenchmark/challenges/memory/m2", | ||
"success": true | ||
}, | ||
"TestRememberMultipleIds": { | ||
"TestRetrieval2": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestBasicMemory" | ||
"TestBasicRetrieval" | ||
], | ||
"test": "agbenchmark/challenges/memory/m2" | ||
"test": "agbenchmark/challenges/retrieval/r2", | ||
"success": true | ||
}, | ||
"TestRememberMultipleIdsWithNoise": { | ||
"difficulty": "medium", | ||
"dependencies": [ | ||
"TestRememberMultipleIds" | ||
], | ||
"test": "agbenchmark/challenges/memory/m3" | ||
"test": "agbenchmark/challenges/memory/m3", | ||
"success": true | ||
}, | ||
"TestRememberMultiplePhrasesWithNoise": { | ||
"difficulty": "medium", | ||
"TestRetrieval3": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestRememberMultipleIdsWithNoise" | ||
"TestRetrieval2" | ||
], | ||
"test": "agbenchmark/challenges/memory/m4" | ||
"test": "agbenchmark/challenges/retrieval/r3", | ||
"success": true | ||
}, | ||
"TestRetrieval2": { | ||
"difficulty": "basic", | ||
"TestRememberMultiplePhrasesWithNoise": { | ||
"difficulty": "medium", | ||
"dependencies": [ | ||
"TestBasicRetrieval" | ||
"TestRememberMultipleIdsWithNoise" | ||
], | ||
"test": "agbenchmark/challenges/retrieval/r2" | ||
"test": "agbenchmark/challenges/memory/m4", | ||
"success": true | ||
}, | ||
"TestRetrieval3": { | ||
"TestSearch": { | ||
"difficulty": "basic", | ||
"dependencies": [ | ||
"TestRetrieval2" | ||
"TestWriteFile" | ||
], | ||
"test": "agbenchmark/challenges/retrieval/r3" | ||
"test": "agbenchmark/challenges/interface/search", | ||
"success": true | ||
}, | ||
"TestSearch": { | ||
"TestWriteFile": { | ||
"difficulty": "basic", | ||
"dependencies": [], | ||
"test": "agbenchmark/challenges/interface/search" | ||
"test": "agbenchmark/challenges/interface/write_file", | ||
"success": true | ||
}, | ||
"TestWriteFile": { | ||
"TestDebugSimpleTypoWithGuidance": { | ||
"difficulty": "basic", | ||
"dependencies": [], | ||
"test": "agbenchmark/challenges/interface/write_file" | ||
"dependencies": [ | ||
"TestReadFile", | ||
"TestWriteFile" | ||
], | ||
"test": "agbenchmark/challenges/code/d1", | ||
"success": true | ||
}, | ||
"TestDebugSimpleTypoWithoutGuidance": { | ||
"difficulty": "medium", | ||
"dependencies": [ | ||
"TestDebugSimpleTypoWithGuidance" | ||
], | ||
"test": "agbenchmark/challenges/code/d2", | ||
"success": true | ||
} | ||
} |
Oops, something went wrong.