Buckets:
| 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 { PerplexityPlugin } from "@opencode-ai/core/plugin/provider/perplexity" | |
| import { fakeSelectorSdk, it, model } from "./provider-helper" | |
| describe("PerplexityPlugin", () => { | |
| it.effect("creates a Perplexity SDK for the exact @ai-sdk/perplexity package", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| yield* plugin.add(PerplexityPlugin) | |
| const result = yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { model: model("perplexity", "sonar"), package: "@ai-sdk/perplexity", options: { name: "perplexity" } }, | |
| {}, | |
| ) | |
| expect(result.sdk).toBeDefined() | |
| }), | |
| ) | |
| it.effect("ignores packages that are not the bundled Perplexity package", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| yield* plugin.add(PerplexityPlugin) | |
| const result = yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { | |
| model: model("perplexity", "sonar"), | |
| package: "@ai-sdk/perplexity-compatible", | |
| options: { name: "perplexity" }, | |
| }, | |
| {}, | |
| ) | |
| expect(result.sdk).toBeUndefined() | |
| }), | |
| ) | |
| it.effect("uses the Perplexity provider ID as the SDK name for the bundled provider", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| const providers: string[] = [] | |
| yield* plugin.add(PerplexityPlugin) | |
| yield* plugin.add({ | |
| id: PluginV2.ID.make("perplexity-sdk-inspector"), | |
| effect: Effect.succeed({ | |
| "aisdk.sdk": (evt) => | |
| Effect.sync(() => { | |
| providers.push(evt.sdk.languageModel("sonar").provider) | |
| }), | |
| }), | |
| }) | |
| yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { model: model("perplexity", "sonar"), package: "@ai-sdk/perplexity", options: { name: "perplexity" } }, | |
| {}, | |
| ) | |
| expect(providers).toEqual(["perplexity"]) | |
| }), | |
| ) | |
| it.effect("creates bundled Perplexity SDKs for custom provider IDs", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| const providers: string[] = [] | |
| yield* plugin.add(PerplexityPlugin) | |
| yield* plugin.add({ | |
| id: PluginV2.ID.make("custom-perplexity-sdk-inspector"), | |
| effect: Effect.succeed({ | |
| "aisdk.sdk": (evt) => | |
| Effect.sync(() => { | |
| providers.push(evt.sdk.languageModel("sonar").provider) | |
| }), | |
| }), | |
| }) | |
| yield* plugin.trigger( | |
| "aisdk.sdk", | |
| { | |
| model: model("custom-perplexity", "sonar"), | |
| package: "@ai-sdk/perplexity", | |
| options: { name: "custom-perplexity" }, | |
| }, | |
| {}, | |
| ) | |
| expect(providers).toEqual(["perplexity"]) | |
| }), | |
| ) | |
| it.effect("leaves Perplexity language selection to the default languageModel fallback", () => | |
| Effect.gen(function* () { | |
| const plugin = yield* PluginV2.Service | |
| const calls: string[] = [] | |
| yield* plugin.add(PerplexityPlugin) | |
| const result = yield* plugin.trigger( | |
| "aisdk.language", | |
| { | |
| model: model("perplexity", "alias", { api: { id: ModelV2.ID.make("sonar") } }), | |
| sdk: fakeSelectorSdk(calls), | |
| options: {}, | |
| }, | |
| {}, | |
| ) | |
| expect(calls).toEqual([]) | |
| expect(result.language).toBeUndefined() | |
| }), | |
| ) | |
| }) | |
Xet Storage Details
- Size:
- 3.52 kB
- Xet hash:
- 6d913d3a5d6db77ad6ae4e51b387525932b452ac91502a205cfa04203fdea89c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.