fix(tools): switch session.prompt to promptAsync in delegate-task and call-omo-agent

This commit is contained in:
Peïo Thibault
2026-02-07 13:43:06 +01:00
parent e984a5c639
commit 55dc64849f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ export async function executeSyncContinuation(
: undefined
}
await client.session.promptAsync({
await (client.session as any).promptAsync({
path: { id: args.session_id! },
body: {
...(resumeAgent !== undefined ? { agent: resumeAgent } : {}),