chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-12 00:58:05 +00:00
parent 003010bdb6
commit 17b2900884
3 changed files with 73 additions and 76 deletions

View File

@@ -6,11 +6,8 @@ import { tmpdir } from "../fixture/fixture"
import { SessionID } from "../../src/session/schema"
import { AppRuntime } from "../../src/effect/app-runtime"
const ask = (input: {
sessionID: SessionID
questions: Question.Info[]
tool?: { messageID: any; callID: string }
}) => AppRuntime.runPromise(Question.Service.use((svc) => svc.ask(input)))
const ask = (input: { sessionID: SessionID; questions: Question.Info[]; tool?: { messageID: any; callID: string } }) =>
AppRuntime.runPromise(Question.Service.use((svc) => svc.ask(input)))
const list = () => AppRuntime.runPromise(Question.Service.use((svc) => svc.list()))