Agent管理页面手动触发预检时,先删缓存再预检
This commit is contained in:
@@ -210,9 +210,13 @@ export async function acpReorderAgents(agentTypes: AgentType[]): Promise<void> {
|
||||
}
|
||||
|
||||
export async function acpPreflight(
|
||||
agentType: AgentType
|
||||
agentType: AgentType,
|
||||
forceRefresh?: boolean
|
||||
): Promise<PreflightResult> {
|
||||
return invoke("acp_preflight", { agentType })
|
||||
return invoke("acp_preflight", {
|
||||
agentType,
|
||||
forceRefresh: forceRefresh ?? null,
|
||||
})
|
||||
}
|
||||
|
||||
export async function acpListAgentSkills(params: {
|
||||
|
||||
Reference in New Issue
Block a user