@diegovelasquezweb/a11y-engine 0.7.8 → 0.7.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegovelasquezweb/a11y-engine",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "WCAG 2.2 accessibility audit engine — scanner, analyzer, and report builders",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/ai/claude.mjs CHANGED
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
  const ANTHROPIC_API = "https://api.anthropic.com/v1/messages";
16
- const DEFAULT_MODEL = "claude-sonnet-4-5";
16
+ const DEFAULT_MODEL = "claude-haiku-4-5-20251001";
17
17
  const MAX_AI_FINDINGS = 20; // cap to control cost
18
18
 
19
19
  /**