Spaces:
Running
Running
Chloe Anastasiades
commited on
Use constants from agent-eval for openness and tool usage (#116)
Browse files- aliases.py +9 -9
- requirements.txt +1 -1
aliases.py
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
|
12 |
OPENNESS_ALIASES = {
|
|
|
1 |
+
from agenteval.config import (
|
2 |
+
OPENNESS_OPEN_SOURCE_OPEN_WEIGHTS as CANONICAL_OPENNESS_OPEN_SOURCE_OPEN_WEIGHTS,
|
3 |
+
OPENNESS_OPEN_SOURCE_CLOSED_WEIGHTS as CANONICAL_OPENNESS_OPEN_SOURCE_CLOSED_WEIGHTS,
|
4 |
+
OPENNESS_CLOSED_API_AVAILABLE as CANONICAL_OPENNESS_CLOSED_API_AVAILABLE,
|
5 |
+
OPENNESS_CLOSED_UI_ONLY as CANONICAL_OPENNESS_CLOSED_UI_ONLY,
|
6 |
+
TOOL_USAGE_STANDARD as CANONICAL_TOOL_USAGE_STANDARD,
|
7 |
+
TOOL_USAGE_CUSTOM_INTERFACE as CANONICAL_TOOL_USAGE_CUSTOM_INTERFACE,
|
8 |
+
TOOL_USAGE_FULLY_CUSTOM as CANONICAL_TOOL_USAGE_FULLY_CUSTOM,
|
9 |
+
)
|
10 |
|
11 |
|
12 |
OPENNESS_ALIASES = {
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
agent-eval==0.1.
|
2 |
aiobotocore==2.22.0
|
3 |
aiofiles==24.1.0
|
4 |
aiohappyeyeballs==2.6.1
|
|
|
1 |
+
agent-eval==0.1.43
|
2 |
aiobotocore==2.22.0
|
3 |
aiofiles==24.1.0
|
4 |
aiohappyeyeballs==2.6.1
|