agent-duelist 0.2.1 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +248 -142
- package/dist/cli.js +2284 -62
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +614 -109
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -3
- package/dist/index.d.ts +28 -3
- package/dist/index.js +612 -109
- package/dist/index.js.map +1 -1
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-duelist",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Pit LLM providers against each other on agent tasks.",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Pit LLM providers against each other on agent tasks. Built-in task packs for structured output, tool calling, and reasoning.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
@@ -63,7 +63,13 @@
|
|
|
63
63
|
"openai",
|
|
64
64
|
"anthropic",
|
|
65
65
|
"arena",
|
|
66
|
-
"duelist"
|
|
66
|
+
"duelist",
|
|
67
|
+
"structured-output",
|
|
68
|
+
"tool-calling",
|
|
69
|
+
"function-calling",
|
|
70
|
+
"zod",
|
|
71
|
+
"json-schema",
|
|
72
|
+
"task-packs"
|
|
67
73
|
],
|
|
68
74
|
"repository": {
|
|
69
75
|
"type": "git",
|