mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-14 19:22:32 +03:00
- 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)
12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
/**
|
|
* ACP Module — Public API
|
|
*
|
|
* Re-exports the registry and manager for convenient imports.
|
|
*/
|
|
|
|
export { detectInstalledAgents, getAgentById, getAvailableAgents } from "./registry";
|
|
export type { CliAgentInfo } from "./registry";
|
|
|
|
export { AcpManager, acpManager } from "./manager";
|
|
export type { AcpSession } from "./manager";
|