feat: playground, CLI fingerprints, ACP support (#234, #223, #235)

- Add model playground page to dashboard (provider/model/endpoint selectors, Monaco editor, streaming, abort)
- Add CLI fingerprint matching (per-provider header/body ordering to match native CLI binaries)
- Add ACP module (CLI agent discovery, process spawner, session manager, API endpoint)
- Add playground to sidebar debug section with i18n support
- Close #192 and #200 as stale (v1.8.1, no repro info)
This commit is contained in:
diegosouzapw
2026-03-07 10:24:43 -03:00
parent 7cb420d8e6
commit ac89069671
10 changed files with 1027 additions and 5 deletions

View File

@@ -27,7 +27,10 @@ const navItemDefs = [
{ href: "/dashboard/media", i18nKey: "media", icon: "auto_awesome" },
];
const debugItemDefs = [{ href: "/dashboard/translator", i18nKey: "translator", icon: "translate" }];
const debugItemDefs = [
{ href: "/dashboard/translator", i18nKey: "translator", icon: "translate" },
{ href: "/dashboard/playground", i18nKey: "playground", icon: "science" },
];
const systemItemDefs = [{ href: "/dashboard/settings", i18nKey: "settings", icon: "settings" }];