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>
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "a2ui_genkit_eval",
|
|
"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",
|
|
"evalGemini": "pnpm run eval -- --model=gemini-2.5-flash --prompt=travelItinerary",
|
|
"evalGpt": "pnpm run eval -- --model=gpt-5-mini --prompt=travelItinerary",
|
|
"evalClaude": "pnpm run eval -- --model=claude-4-sonnet --prompt=travelItinerary",
|
|
"start": "genkit start",
|
|
"genkit:dev": "genkit start -- tsx --watch src/dev.ts",
|
|
"format": "prettier --write src/**/*.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"@types/yargs": "^17.0.34",
|
|
"dotenv-cli": "^10.0.0",
|
|
"prettier": "^3.6.2",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2",
|
|
"yargs": "^18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@genkit-ai/compat-oai": "^1.19.2",
|
|
"@genkit-ai/google-genai": "^1.19.3",
|
|
"@genkit-ai/vertexai": "^1.19.3",
|
|
"genkit": "^1.19.2",
|
|
"genkitx-anthropic": "^0.25.0"
|
|
}
|
|
}
|