Buckets:
| import { describe, expect } from "bun:test" | |
| import { Effect, Layer } from "effect" | |
| import { AISDK } from "@opencode-ai/core/aisdk" | |
| import { EventV2 } from "@opencode-ai/core/event" | |
| import { ModelV2 } from "@opencode-ai/core/model" | |
| import { PluginV2 } from "@opencode-ai/core/plugin" | |
| import { GooglePlugin } from "@opencode-ai/core/plugin/provider/google" | |
| import { testEffect } from "../lib/effect" | |
| import { it, model } from "./provider-helper" | |
| const itWithAISDK = testEffect( | |
| AISDK.layer.pipe(Layer.provideMerge(PluginV2.locationLayer.pipe(Layer.provide(EventV2.defaultLayer)))), | |
| ) | |
| describe("GooglePlugin", () => { | |
| it.effect("creates a Google Generative AI SDK for @ai-sdk/google using the provider ID as SDK name", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| yield* plugin.add(GooglePlugin) | |
| const result = yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { | |
| model: model("custom-google", "gemini"), | |
| package: "@ai-sdk/google", | |
| options: { name: "custom-google", apiKey: "test" }, | |
| }, | |
| {}, | |
| ) | |
| expect(result.sdk).toBeDefined() | |
| expect(result.sdk?.languageModel("gemini").provider).toBe("custom-google") | |
| }), | |
| ) | |
| it.effect("ignores non-Google SDK packages", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| yield* plugin.add(GooglePlugin) | |
| const result = yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { model: model("google", "gemini"), package: "@ai-sdk/google-vertex", options: { name: "google" } }, | |
| {}, | |
| ) | |
| expect(result.sdk).toBeUndefined() | |
| }), | |
| ) | |
| itWithAISDK.effect("uses default languageModel loading with provider ID parity", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| const aisdk = yield* AISDK.Service | |
| yield* plugin.add(GooglePlugin) | |
| const language = yield* aisdk.language( | |
| model("custom-google", "alias", { | |
| api: { | |
| id: ModelV2.ID.make("gemini-api"), | |
| type: "aisdk", | |
| package: "@ai-sdk/google", | |
| }, | |
| request: { | |
| headers: {}, | |
| body: { apiKey: "test" }, | |
| }, | |
| }), | |
| ) | |
| expect(language.modelId).toBe("gemini-api") | |
| expect(language.provider).toBe("custom-google") | |
| }), | |
| ) | |
| }) | |
Xet Storage Details
- Size:
- 2.35 kB
- Xet hash:
- 9a6f045304f6a206545d161bbb02d43665f5bb6928a36595fc5153f56002ef6c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.