openclaw/vendor/a2ui/renderers/angular/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

60 lines
1.4 KiB
JSON

{
"name": "@a2ui/angular",
"version": "0.8.1",
"scripts": {
"build": "ng build"
},
"dependencies": {
"@a2ui/lit": "file:../lit",
"markdown-it": "^14.1.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/common": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/platform-browser": "^21.0.0"
},
"devDependencies": {
"@angular/build": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler": "^21.0.0",
"@angular/compiler-cli": "^21.0.3",
"@angular/core": "^21.0.0",
"@types/express": "^5.0.1",
"@types/jasmine": "~5.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.17.19",
"@types/uuid": "^10.0.0",
"@vitest/browser": "^4.0.15",
"cypress": "^15.6.0",
"google-artifactregistry-auth": "^3.5.0",
"jasmine-core": "~5.9.0",
"jsdom": "^27.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^21.0.0",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"tslib": "^2.8.1",
"typescript": "~5.9.2",
"vitest": "^4.0.15"
},
"sideEffects": false,
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
}
}