chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-24 17:21:26 +00:00
parent ae0c03ad62
commit 5d9772ff40
+2 -10
View File
@@ -23,13 +23,7 @@ const connections = Credential.defaultLayer.pipe(Layer.fresh)
const integrations = Integration.locationLayer.pipe(Layer.provide(events), Layer.provide(connections)) const integrations = Integration.locationLayer.pipe(Layer.provide(events), Layer.provide(connections))
const catalog = Catalog.layer.pipe( const catalog = Catalog.layer.pipe(
Layer.provide( Layer.provide(
Layer.mergeAll( Layer.mergeAll(events, locationLayer, Policy.layer.pipe(Layer.provide(locationLayer)), connections, integrations),
events,
locationLayer,
Policy.layer.pipe(Layer.provide(locationLayer)),
connections,
integrations,
),
), ),
) )
const it = testEffect( const it = testEffect(
@@ -71,9 +65,7 @@ describe("VariantPlugin", () => {
type: "aisdk", type: "aisdk",
package: "@ai-sdk/openai-compatible", package: "@ai-sdk/openai-compatible",
} }
model.variants = [ model.variants = [{ id: ModelV2.VariantID.make("high"), headers: { custom: "true" }, body: {} }]
{ id: ModelV2.VariantID.make("high"), headers: { custom: "true" }, body: {} },
]
}) })
}) })
yield* VariantPlugin.Plugin.effect(host({ catalog: catalogHost(service) })) yield* VariantPlugin.Plugin.effect(host({ catalog: catalogHost(service) }))