chore: generate

This commit is contained in:
opencode-agent[bot]
2026-03-18 17:37:40 +00:00
parent a800583aea
commit c3ddc85cca
3 changed files with 1 additions and 7 deletions

View File

@@ -91,5 +91,4 @@ export namespace AuthEffect {
return Service.of({ get, all, set, remove })
}),
)
}

View File

@@ -58,11 +58,7 @@ export namespace TruncateEffect {
}
})
const output = Effect.fn("Truncate.output")(function* (
text: string,
options: Options = {},
agent?: Agent.Info,
) {
const output = Effect.fn("Truncate.output")(function* (text: string, options: Options = {}, agent?: Agent.Info) {
const maxLines = options.maxLines ?? MAX_LINES
const maxBytes = options.maxBytes ?? MAX_BYTES
const direction = options.direction ?? "head"