| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- import { AISDK } from "@opencode-ai/core/aisdk"
- import type { LanguageModelV3 } from "@ai-sdk/provider"
- import { describe, expect } from "bun:test"
- import { Effect } from "effect"
- import { ModelV2 } from "@opencode-ai/core/model"
- import { PluginV2 } from "@opencode-ai/core/plugin"
- import { PluginHost } from "@opencode-ai/core/plugin/host"
- import { MistralPlugin } from "@opencode-ai/core/plugin/provider/mistral"
- import { ProviderV2 } from "@opencode-ai/core/provider"
- import { testEffect } from "../lib/effect"
- import { PluginTestLayer } from "./fixture"
- const it = testEffect(PluginTestLayer)
- const addPlugin = Effect.fn(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- const host = yield* PluginHost.make(plugin)
- yield* MistralPlugin.effect(host)
- })
- describe("MistralPlugin", () => {
- it.effect("creates a Mistral SDK for @ai-sdk/mistral", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- yield* addPlugin()
- const result = yield* aisdk.runSDK({
- model: ModelV2.Info.make({
- ...ModelV2.Info.empty(ProviderV2.ID.make("mistral"), ModelV2.ID.make("mistral-large")),
- api: { id: ModelV2.ID.make("mistral-large"), type: "aisdk", package: "test-provider" },
- }),
- package: "@ai-sdk/mistral",
- options: { name: "mistral" },
- })
- expect(result.sdk).toBeDefined()
- }),
- )
- it.effect("ignores non-Mistral SDK packages", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- yield* addPlugin()
- const result = yield* aisdk.runSDK({
- model: ModelV2.Info.make({
- ...ModelV2.Info.empty(ProviderV2.ID.make("mistral"), ModelV2.ID.make("mistral-large")),
- api: { id: ModelV2.ID.make("mistral-large"), type: "aisdk", package: "test-provider" },
- }),
- package: "@ai-sdk/openai-compatible",
- options: { name: "mistral" },
- })
- expect(result.sdk).toBeUndefined()
- }),
- )
- it.effect("matches the old bundled Mistral SDK provider name for the bundled provider ID", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- const providers: string[] = []
- yield* addPlugin()
- yield* aisdk.hook.sdk((event) =>
- Effect.sync(() => {
- providers.push(event.sdk.languageModel("mistral-large").provider)
- }),
- )
- const result = yield* aisdk.runSDK({
- model: ModelV2.Info.make({
- ...ModelV2.Info.empty(ProviderV2.ID.make("mistral"), ModelV2.ID.make("mistral-large")),
- api: { id: ModelV2.ID.make("mistral-large"), type: "aisdk", package: "test-provider" },
- }),
- package: "@ai-sdk/mistral",
- options: { name: "mistral" },
- })
- expect(result.sdk).toBeDefined()
- expect(providers).toEqual(["mistral.chat"])
- }),
- )
- it.effect("matches the old bundled Mistral SDK provider name for custom provider IDs", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- const providers: string[] = []
- yield* addPlugin()
- yield* aisdk.hook.sdk((event) =>
- Effect.sync(() => {
- providers.push(event.sdk.languageModel("mistral-large").provider)
- }),
- )
- yield* aisdk.runSDK({
- model: ModelV2.Info.make({
- ...ModelV2.Info.empty(ProviderV2.ID.make("custom-mistral"), ModelV2.ID.make("mistral-large")),
- api: { id: ModelV2.ID.make("mistral-large"), type: "aisdk", package: "test-provider" },
- }),
- package: "@ai-sdk/mistral",
- options: { name: "custom-mistral" },
- })
- expect(providers).toEqual(["mistral.chat"])
- }),
- )
- it.effect("leaves Mistral language selection on the default sdk.languageModel(api.id) path", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const aisdk = yield* AISDK.Service
- const calls: string[] = []
- const sdk = {
- languageModel: (id: string) => {
- calls.push(`languageModel:${id}`)
- return { modelId: id, provider: "languageModel", specificationVersion: "v3" } as unknown as LanguageModelV3
- },
- }
- yield* addPlugin()
- const result = yield* aisdk.runLanguage({
- model: ModelV2.Info.make({
- ...ModelV2.Info.empty(ProviderV2.ID.make("mistral"), ModelV2.ID.make("alias")),
- api: { id: ModelV2.ID.make("mistral-large"), type: "aisdk", package: "test-provider" },
- }),
- sdk,
- options: {},
- })
- const language = result.language ?? sdk.languageModel(result.model.api.id)
- expect(calls).toEqual(["languageModel:mistral-large"])
- expect(language).toBeDefined()
- }),
- )
- })
|