chore: generate

pull/12534/head
opencode-agent[bot] 2026-02-06 22:14:34 +00:00
parent 898778daa9
commit e767801db2
1 changed files with 3 additions and 3 deletions

View File

@ -174,7 +174,7 @@ export namespace SessionPrompt {
return message return message
} }
return loop({sessionID: input.sessionID}) return loop({ sessionID: input.sessionID })
}) })
export async function resolvePromptParts(template: string): Promise<PromptInput["parts"]> { export async function resolvePromptParts(template: string): Promise<PromptInput["parts"]> {
@ -1387,8 +1387,8 @@ NOTE: At any point in time through this workflow you should feel free to ask the
cancel(input.sessionID) cancel(input.sessionID)
} else { } else {
// Otherwise, trigger the session loop to process queued items // Otherwise, trigger the session loop to process queued items
loop({sessionID: input.sessionID, resume_existing: true}).catch((error) => { loop({ sessionID: input.sessionID, resume_existing: true }).catch((error) => {
log.error("session loop failed to resume after shell command", { sessionID: input.sessionID, error }) log.error("session loop failed to resume after shell command", { sessionID: input.sessionID, error })
}) })
} }
}) })