Files
Matt Van Horn c03b7ff4cf fix: route image_qa and self_reflection through the configured model (#5)
Closes #3.

The image_qa and self_reflection inner tools now route through the configured model registry instead of hardcoding the OpenAI Responses API. Anthropic-only runs (`webwright -c base.yaml -c model_claude.yaml`) work end-to-end with only `ANTHROPIC_API_KEY` set.

Co-authored-by: Matt Van Horn <mvanhorn@users.noreply.github.com>
2026-05-26 18:33:12 -07:00

7 lines
142 B
Python

from __future__ import annotations
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src"))