chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-05 14:49:06 +00:00
parent 02a5ae6585
commit e9aa33d4bd
3 changed files with 11 additions and 3 deletions
+6 -1
View File
@@ -787,7 +787,12 @@ describe("SessionRunnerLLM", () => {
agent.mode = "primary"
}),
)
yield* db.update(SessionTable).set({ agent: "reviewer" }).where(eq(SessionTable.id, sessionID)).run().pipe(Effect.orDie)
yield* db
.update(SessionTable)
.set({ agent: "reviewer" })
.where(eq(SessionTable.id, sessionID))
.run()
.pipe(Effect.orDie)
const session = yield* SessionV2.Service
yield* session.prompt({ sessionID, prompt: new Prompt({ text: "First" }), resume: false })