feat: add browser config for Agent (#11958)

This commit is contained in:
CityFun
2026-02-26 09:59:48 +00:00
committed by GitHub
parent f3de09e5d7
commit f0f2087f54
20 changed files with 422 additions and 7 deletions
+20
View File
@@ -450,4 +450,24 @@ export namespace AI {
token: string;
proxy: string;
}
export interface AgentBrowserConfigReq {
agentId: number;
}
export interface AgentBrowserConfig {
enabled: boolean;
executablePath: string;
headless: boolean;
noSandbox: boolean;
defaultProfile: string;
}
export interface AgentBrowserConfigUpdateReq {
agentId: number;
enabled: boolean;
headless: boolean;
noSandbox: boolean;
defaultProfile: string;
}
}