feat: add litellm client adapter, JSONL flow detail, and sample output

This commit is contained in:
2026-06-01 14:44:04 +08:00
parent 370853ccbf
commit 1547ed7785
18 changed files with 1523 additions and 34 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ from auto_reverse.cli import _parse_args
def test_parse_minimal():
cfg = _parse_args(["https://app.example.com"])
assert cfg.target_url == "https://app.example.com"
assert cfg.model == "claude-opus-4-8"
assert cfg.model == "openrouter/xiaomi/mimo-v2.5-pro"
assert cfg.headless is False
+1 -1
View File
@@ -14,7 +14,7 @@ def test_config_scope_hosts_includes_target_plus_extra():
def test_default_model():
assert Config(target_url="https://x.com").model == "claude-opus-4-8"
assert Config(target_url="https://x.com").model == "openrouter/xiaomi/mimo-v2.5-pro"
def test_make_auth_returns_strategy():