chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-29 03:49:43 +00:00
parent 84336e4f91
commit 846d548154
16 changed files with 43 additions and 83 deletions
@@ -206,10 +206,7 @@ const providerErrorLLM = Layer.succeed(
),
}),
)
const providerErrorEnv = LayerNode.compile(
root,
[...replacements, [LLM.node, providerErrorLLM]],
)
const providerErrorEnv = LayerNode.compile(root, [...replacements, [LLM.node, providerErrorLLM]])
const itProviderError = testEffect(providerErrorEnv)
const fragmentFailureLLM = Layer.succeed(
@@ -226,10 +223,7 @@ const fragmentFailureLLM = Layer.succeed(
),
}),
)
const fragmentFailureEnv = LayerNode.compile(
root,
[...replacements, [LLM.node, fragmentFailureLLM]],
)
const fragmentFailureEnv = LayerNode.compile(root, [...replacements, [LLM.node, fragmentFailureLLM]])
const itFragmentFailure = testEffect(fragmentFailureEnv)
const boot = Effect.fn("test.boot")(function* () {