mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-27 00:00:59 +00:00
feat: add browser config for Agent (#11958)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user