openclaw/vendor/a2ui/specification/0.9/eval/package.json
Jon Shapiro 92697edb7c fix(venice): add compat settings to prevent HTTP 400 errors
Venice's API doesn't support certain OpenAI-compatible parameters that
Clawdbot sends by default:

- `store`: Venice returns HTTP 400 with no body when this is present
- `developer` role: Not supported by Venice's API

This adds VENICE_COMPAT settings (supportsStore: false,
supportsDeveloperRole: false) to all Venice model definitions, both
from the static catalog and dynamically discovered models.

Fixes issues reported in PR #1666 where users experienced silent
failures (HTTP 400, no body) when using Venice models.

Co-authored-by: jonisjongithub <jonisjongithub@users.noreply.github.com>
Co-authored-by: Clawdbot <bot@clawd.bot>
2026-01-26 17:56:01 -08:00

48 lines
1.4 KiB
JSON

{
"name": "a2ui_0_9_eval_llm",
"version": "1.0.0",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"eval": "dotenv -- tsx src/index.ts",
"evalAll": "pnpm run eval --clean-results",
"evalGemini": "pnpm run eval --model=gemini-2.5-flash-lite --clean-results",
"evalGpt": "pnpm run eval --model=gpt-5-mini --clean-results",
"evalClaude": "pnpm run eval --model=claude-4-sonnet --clean-results",
"start": "genkit start",
"genkit:dev": "genkit start -- tsx --watch src/dev.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^20.19.25",
"@types/yargs": "^17.0.35",
"dotenv-cli": "^10.0.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"yargs": "^18.0.0"
},
"dependencies": {
"@genkit-ai/ai": "^1.24.0",
"@genkit-ai/compat-oai": "^1.24.0",
"@genkit-ai/core": "^1.24.0",
"@genkit-ai/dotprompt": "^0.9.12",
"@genkit-ai/firebase": "^1.24.0",
"@genkit-ai/google-cloud": "^1.24.0",
"@genkit-ai/google-genai": "^1.24.0",
"@types/js-yaml": "^4.0.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"genkit": "^1.24.0",
"genkitx-anthropic": "^0.25.0",
"js-yaml": "^4.1.1",
"winston": "^3.18.3",
"zod": "^3.25.76"
}
}