| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554 |
- import path from "path"
- import { describe, expect } from "bun:test"
- import { Money } from "@opencode-ai/schema/money"
- import { Effect, Layer } from "effect"
- import { Catalog } from "@opencode-ai/core/catalog"
- import { Integration } from "@opencode-ai/core/integration"
- import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
- import { LayerNode } from "@opencode-ai/util/effect/layer-node"
- import { Bus } from "@opencode-ai/core/bus"
- import { Location } from "@opencode-ai/core/location"
- import { Model } from "@opencode-ai/core/model"
- import { ModelsDev } from "@opencode-ai/core/models-dev"
- import { ModelsDevPlugin } from "@opencode-ai/core/plugin/models-dev"
- import { Provider } from "@opencode-ai/core/provider"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { location } from "../fixture/location"
- import { testEffect } from "../lib/effect"
- import { catalogHost, host, integrationHost } from "./host"
- const locationLayer = Layer.succeed(
- Location.Service,
- Location.Service.of(location({ directory: AbsolutePath.make(import.meta.dir) })),
- )
- const layer = AppNodeBuilder.build(LayerNode.group([Catalog.node, Integration.node, Bus.node]), [
- [Location.node, locationLayer],
- ])
- const it = testEffect(layer)
- const models = (file: string) =>
- AppNodeBuilder.build(ModelsDev.node, [[ModelsDev.node, ModelsDev.configured({ file, fetch: false })]])
- describe("ModelsDevPlugin", () => {
- it.effect("projects normalized models.dev snapshots into the catalog", () =>
- Effect.gen(function* () {
- const integrations = yield* Integration.Service
- const catalog = yield* Catalog.Service
- const providerID = Provider.ID.make("acme")
- const modelID = Model.ID.make("gpt-5.4")
- const models = ModelsDev.Service.of({
- get: () =>
- Effect.succeed([
- {
- info: {
- id: providerID,
- name: "Acme",
- package: Provider.aisdk("@ai-sdk/openai-compatible"),
- settings: { baseURL: "https://api.acme.test/v1" },
- },
- environment: [],
- models: [
- {
- id: modelID,
- modelID,
- providerID,
- name: "GPT-5.4",
- family: Model.Family.make("gpt"),
- capabilities: { tools: true, input: [], output: [] },
- variants: [],
- time: { released: Date.parse("2026-01-01") },
- cost: [
- {
- input: Money.USDPerMillionTokens.make(2.5),
- output: Money.USDPerMillionTokens.make(15),
- cache: {
- read: Money.USDPerMillionTokens.zero,
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 272_000 },
- input: Money.USDPerMillionTokens.make(3),
- output: Money.USDPerMillionTokens.make(18),
- cache: {
- read: Money.USDPerMillionTokens.make(0.25),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 200_000 },
- input: Money.USDPerMillionTokens.make(5),
- output: Money.USDPerMillionTokens.make(22.5),
- cache: {
- read: Money.USDPerMillionTokens.make(0.5),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- ],
- status: "active",
- enabled: true,
- limit: { context: 1_050_000, input: 922_000, output: 128_000 },
- },
- {
- id: Model.ID.make("gpt-5.4-fast"),
- modelID,
- providerID,
- name: "GPT-5.4 Fast",
- family: Model.Family.make("gpt"),
- package: Provider.aisdk("@ai-sdk/openai-compatible"),
- settings: { baseURL: "https://api.acme.test/v1" },
- headers: { "x-mode": "fast" },
- body: { service_tier: "priority" },
- capabilities: { tools: true, input: [], output: [] },
- variants: [],
- time: { released: Date.parse("2026-01-01") },
- cost: [
- {
- input: Money.USDPerMillionTokens.make(5),
- output: Money.USDPerMillionTokens.make(30),
- cache: {
- read: Money.USDPerMillionTokens.make(0.5),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 272_000 },
- input: Money.USDPerMillionTokens.make(3),
- output: Money.USDPerMillionTokens.make(18),
- cache: {
- read: Money.USDPerMillionTokens.make(0.25),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 200_000 },
- input: Money.USDPerMillionTokens.make(5),
- output: Money.USDPerMillionTokens.make(22.5),
- cache: {
- read: Money.USDPerMillionTokens.make(0.5),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- ],
- status: "active",
- enabled: true,
- limit: { context: 1_050_000, input: 922_000, output: 128_000 },
- },
- ],
- },
- ] satisfies readonly ModelsDev.Snapshot[]),
- refresh: () => Effect.void,
- })
- yield* ModelsDevPlugin.effect(
- host({
- catalog: catalogHost(catalog),
- integration: integrationHost(integrations),
- }),
- ).pipe(Effect.provideService(ModelsDev.Service, models))
- const base = yield* catalog.model.get(providerID, Model.ID.make("gpt-5.4"))
- const fast = yield* catalog.model.get(providerID, Model.ID.make("gpt-5.4-fast"))
- expect(base?.variants).toEqual([])
- expect(base?.body).toBeUndefined()
- expect(fast).toMatchObject({
- id: "gpt-5.4-fast",
- modelID: "gpt-5.4",
- providerID: "acme",
- name: "GPT-5.4 Fast",
- package: Provider.aisdk("@ai-sdk/openai-compatible"),
- settings: { baseURL: "https://api.acme.test/v1" },
- headers: { "x-mode": "fast" },
- body: { service_tier: "priority" },
- variants: [],
- })
- expect(fast?.cost).toEqual([
- {
- input: Money.USDPerMillionTokens.make(5),
- output: Money.USDPerMillionTokens.make(30),
- cache: {
- read: Money.USDPerMillionTokens.make(0.5),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 272_000 },
- input: Money.USDPerMillionTokens.make(3),
- output: Money.USDPerMillionTokens.make(18),
- cache: {
- read: Money.USDPerMillionTokens.make(0.25),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- {
- tier: { type: "context", size: 200_000 },
- input: Money.USDPerMillionTokens.make(5),
- output: Money.USDPerMillionTokens.make(22.5),
- cache: {
- read: Money.USDPerMillionTokens.make(0.5),
- write: Money.USDPerMillionTokens.zero,
- },
- },
- ])
- }),
- )
- it.effect("registers key methods for providers with environment variables", () =>
- Effect.gen(function* () {
- const integrations = yield* Integration.Service
- const catalog = yield* Catalog.Service
- yield* ModelsDevPlugin.effect(
- host({
- catalog: catalogHost(catalog),
- integration: integrationHost(integrations),
- }),
- )
- expect(yield* integrations.list()).toEqual([
- Integration.Info.make({
- id: Integration.ID.make("acme"),
- name: "Acme",
- methods: [
- { type: "key" },
- {
- type: "env",
- names: ["ACME_API_KEY"],
- },
- ],
- connections: [],
- }),
- ])
- }).pipe(Effect.provide(models(path.join(import.meta.dir, "fixtures", "models-dev.json")))),
- )
- it.effect("converts reasoning options into settings variants", () =>
- Effect.gen(function* () {
- const catalog = yield* Catalog.Service
- const integrations = yield* Integration.Service
- yield* ModelsDevPlugin.effect(
- host({
- catalog: catalogHost(catalog),
- integration: integrationHost(integrations),
- }),
- )
- const model = yield* catalog.model.get(Provider.ID.openai, Model.ID.make("gpt-reasoning"))
- expect(model?.variants?.map((variant) => variant.id)).toEqual([
- Model.VariantID.make("low"),
- Model.VariantID.make("high"),
- ])
- expect(model?.variants).toContainEqual({
- id: Model.VariantID.make("low"),
- settings: {
- reasoningEffort: "low",
- reasoningSummary: "auto",
- include: ["reasoning.encrypted_content"],
- },
- })
- expect(model?.variants).toContainEqual({
- id: Model.VariantID.make("high"),
- settings: {
- reasoningEffort: "high",
- reasoningSummary: "auto",
- include: ["reasoning.encrypted_content"],
- },
- })
- const mode = yield* catalog.model.get(Provider.ID.openai, Model.ID.make("gpt-reasoning-high"))
- expect(mode).toMatchObject({
- id: "gpt-reasoning-high",
- name: "GPT Reasoning High",
- headers: { "x-mode": "high" },
- body: { service_tier: "priority" },
- })
- expect(mode?.variants?.map((variant) => variant.id)).toEqual([
- Model.VariantID.make("low"),
- Model.VariantID.make("high"),
- ])
- const pro = yield* catalog.model.get(Provider.ID.openai, Model.ID.make("gpt-reasoning-pro"))
- expect(pro).toMatchObject({
- id: "gpt-reasoning-pro",
- body: { reasoning: { mode: "pro" } },
- })
- const budgetModel = yield* catalog.model.get(Provider.ID.anthropic, Model.ID.make("claude-budget"))
- expect(budgetModel?.variants).toContainEqual({
- id: Model.VariantID.make("high"),
- settings: { thinking: { type: "enabled", budgetTokens: 16000 } },
- })
- expect(budgetModel?.variants).toContainEqual({
- id: Model.VariantID.make("max"),
- settings: { thinking: { type: "enabled", budgetTokens: 31999 } },
- })
- const anthropicEffortModel = yield* catalog.model.get(Provider.ID.anthropic, Model.ID.make("claude-opus-4.7"))
- expect(anthropicEffortModel?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { thinking: { type: "disabled" } } },
- {
- id: Model.VariantID.make("low"),
- settings: { thinking: { type: "adaptive", display: "summarized" }, effort: "low" },
- },
- ])
- const anthropicToggleModel = yield* catalog.model.get(Provider.ID.anthropic, Model.ID.make("claude-toggle"))
- expect(anthropicToggleModel?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { thinking: { type: "disabled" } } },
- {
- id: Model.VariantID.make("thinking"),
- settings: { thinking: { type: "adaptive", display: "summarized" } },
- },
- ])
- const opus45 = yield* catalog.model.get(Provider.ID.anthropic, Model.ID.make("claude-opus-4-5"))
- expect(opus45?.variants).toEqual([
- { id: Model.VariantID.make("low"), settings: { effort: "low" } },
- { id: Model.VariantID.make("high"), settings: { effort: "high" } },
- ])
- const grok = yield* catalog.model.get(Provider.ID.make("xai"), Model.ID.make("grok-4.5"))
- expect(grok?.variants).toEqual(
- ["low", "medium", "high"].map((id) => ({
- id: Model.VariantID.make(id),
- settings: { reasoningEffort: id },
- })),
- )
- const minimax = yield* catalog.model.get(Provider.ID.make("opencode-go"), Model.ID.make("minimax-m3"))
- expect(minimax?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { thinking: { type: "disabled" } } },
- {
- id: Model.VariantID.make("thinking"),
- settings: { thinking: { type: "adaptive", display: "summarized" } },
- },
- ])
- const toggle = yield* catalog.model.get(Provider.ID.make("alibaba"), Model.ID.make("toggle-only"))
- expect(toggle?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { enableThinking: false } },
- { id: Model.VariantID.make("thinking"), settings: { enableThinking: true } },
- ])
- const combined = yield* catalog.model.get(Provider.ID.make("alibaba"), Model.ID.make("toggle-budget"))
- expect(combined?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { enableThinking: false } },
- {
- id: Model.VariantID.make("high"),
- settings: { enableThinking: true, thinkingBudget: 8000 },
- },
- {
- id: Model.VariantID.make("max"),
- settings: { enableThinking: true, thinkingBudget: 16000 },
- },
- ])
- const gateway = yield* catalog.model.get(Provider.ID.make("vercel"), Model.ID.make("alibaba/qwen-toggle"))
- expect(gateway?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { enableThinking: false } },
- {
- id: Model.VariantID.make("high"),
- settings: { enableThinking: true, thinkingBudget: 8000 },
- },
- {
- id: Model.VariantID.make("max"),
- settings: { enableThinking: true, thinkingBudget: 16000 },
- },
- ])
- const gatewayNova = yield* catalog.model.get(Provider.ID.make("vercel"), Model.ID.make("amazon/nova-2-lite"))
- expect(gatewayNova?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { additionalModelRequestFields: { reasoningConfig: { type: "disabled" } } },
- },
- {
- id: Model.VariantID.make("low"),
- settings: { reasoningConfig: { type: "enabled", maxReasoningEffort: "low" } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { reasoningConfig: { type: "enabled", maxReasoningEffort: "high" } },
- },
- ])
- const gatewayFallback = yield* catalog.model.get(
- Provider.ID.make("vercel"),
- Model.ID.make("deepseek/deepseek-toggle"),
- )
- expect(gatewayFallback?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { reasoning: { enabled: false } },
- },
- {
- id: Model.VariantID.make("low"),
- settings: { reasoningEffort: "low" },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { reasoningEffort: "high" },
- },
- ])
- const openrouter = yield* catalog.model.get(
- Provider.ID.make("openrouter"),
- Model.ID.make("openrouter-toggle"),
- )
- expect(openrouter?.variants).toEqual([
- { id: Model.VariantID.make("none"), settings: { reasoning: { enabled: false } } },
- { id: Model.VariantID.make("thinking"), settings: { reasoning: { enabled: true } } },
- ])
- const google = yield* catalog.model.get(Provider.ID.make("google"), Model.ID.make("gemini-2.5-flash"))
- expect(google?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { thinkingConfig: { includeThoughts: false, thinkingBudget: 0 } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { thinkingConfig: { includeThoughts: true, thinkingBudget: 8000 } },
- },
- {
- id: Model.VariantID.make("max"),
- settings: { thinkingConfig: { includeThoughts: true, thinkingBudget: 16000 } },
- },
- ])
- const vertex = yield* catalog.model.get(
- Provider.ID.make("google-vertex"),
- Model.ID.make("gemini-2.5-flash-lite"),
- )
- expect(vertex?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { thinkingConfig: { includeThoughts: false, thinkingBudget: 0 } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { thinkingConfig: { includeThoughts: true, thinkingBudget: 8000 } },
- },
- {
- id: Model.VariantID.make("max"),
- settings: { thinkingConfig: { includeThoughts: true, thinkingBudget: 16000 } },
- },
- ])
- const bedrock = yield* catalog.model.get(
- Provider.ID.make("amazon-bedrock"),
- Model.ID.make("amazon.nova-2-lite-v1:0"),
- )
- expect(bedrock?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { additionalModelRequestFields: { reasoningConfig: { type: "disabled" } } },
- },
- {
- id: Model.VariantID.make("low"),
- settings: { reasoningConfig: { type: "enabled", maxReasoningEffort: "low" } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { reasoningConfig: { type: "enabled", maxReasoningEffort: "high" } },
- },
- ])
- const sapGemini = yield* catalog.model.get(Provider.ID.make("sap-ai-core"), Model.ID.make("gemini-2.5-flash"))
- expect(sapGemini?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { modelParams: { thinkingConfig: { includeThoughts: false, thinkingBudget: 0 } } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { modelParams: { thinkingConfig: { includeThoughts: true, thinkingBudget: 8000 } } },
- },
- {
- id: Model.VariantID.make("max"),
- settings: { modelParams: { thinkingConfig: { includeThoughts: true, thinkingBudget: 16000 } } },
- },
- ])
- const sapNova = yield* catalog.model.get(Provider.ID.make("sap-ai-core"), Model.ID.make("amazon--nova-lite"))
- expect(sapNova?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: {
- modelParams: { additionalModelRequestFields: { thinking: { type: "disabled" } } },
- },
- },
- {
- id: Model.VariantID.make("low"),
- settings: {
- modelParams: { additionalModelRequestFields: { output_config: { effort: "low" } } },
- },
- },
- {
- id: Model.VariantID.make("high"),
- settings: {
- modelParams: { additionalModelRequestFields: { output_config: { effort: "high" } } },
- },
- },
- ])
- const sapCohere = yield* catalog.model.get(
- Provider.ID.make("sap-ai-core"),
- Model.ID.make("cohere--command-a-reasoning"),
- )
- expect(sapCohere?.variants).toEqual([
- {
- id: Model.VariantID.make("none"),
- settings: { modelParams: { thinking: { type: "disabled" } } },
- },
- {
- id: Model.VariantID.make("low"),
- settings: { modelParams: { reasoning_effort: "low" } },
- },
- {
- id: Model.VariantID.make("high"),
- settings: { modelParams: { reasoning_effort: "high" } },
- },
- ])
- const sapAnthropicEffort = yield* catalog.model.get(
- Provider.ID.make("sap-ai-core"),
- Model.ID.make("anthropic--claude-4.7-opus"),
- )
- expect(sapAnthropicEffort?.variants).toEqual([
- {
- id: Model.VariantID.make("low"),
- settings: {
- modelParams: {
- additionalModelRequestFields: {
- thinking: { type: "adaptive", display: "summarized" },
- output_config: { effort: "low" },
- },
- },
- },
- },
- ])
- const sapAnthropicBudget = yield* catalog.model.get(
- Provider.ID.make("sap-ai-core"),
- Model.ID.make("anthropic--claude-4-sonnet"),
- )
- expect(sapAnthropicBudget?.variants).toEqual([
- {
- id: Model.VariantID.make("high"),
- settings: {
- modelParams: {
- additionalModelRequestFields: { thinking: { type: "enabled", budget_tokens: 8000 } },
- },
- },
- },
- {
- id: Model.VariantID.make("max"),
- settings: {
- modelParams: {
- additionalModelRequestFields: { thinking: { type: "enabled", budget_tokens: 16000 } },
- },
- },
- },
- ])
- }).pipe(Effect.provide(models(path.join(import.meta.dir, "fixtures", "models-dev-reasoning.json")))),
- )
- })
|