feat(remote): support per-conversation working directories in listener mode (#1323)
This commit is contained in:
@@ -278,7 +278,8 @@ export async function recompileAgentSystemPrompt(
|
||||
options: RecompileAgentSystemPromptOptions = {},
|
||||
clientOverride?: AgentSystemPromptRecompileClient,
|
||||
): Promise<string> {
|
||||
const client = clientOverride ?? (await getClient());
|
||||
const client = (clientOverride ??
|
||||
(await getClient())) as AgentSystemPromptRecompileClient;
|
||||
|
||||
return client.agents.recompile(agentId, {
|
||||
dry_run: options.dryRun,
|
||||
|
||||
Reference in New Issue
Block a user