huskies: merge 770

This commit is contained in:
dave
2026-04-28 15:31:29 +00:00
parent 1946709681
commit f63464852b
13 changed files with 212 additions and 266 deletions
+4 -2
View File
@@ -1,3 +1,5 @@
import { rpcCall } from "./rpc";
export type AgentStatusValue = "pending" | "running" | "completed" | "failed";
export interface AgentInfo {
@@ -94,8 +96,8 @@ export const agentsApi = {
);
},
listAgents(baseUrl?: string) {
return requestJson<AgentInfo[]>("/agents", {}, baseUrl);
listAgents(_baseUrl?: string) {
return rpcCall<AgentInfo[]>("active_agents.list");
},
getAgentConfig(baseUrl?: string) {