Buckets:
| import { Effect } from "effect" | |
| import { PluginV2 } from "../../plugin" | |
| import { ProviderV2 } from "../../provider" | |
| function selectLanguage(sdk: any, modelID: string, useChat: boolean) { | |
| if (useChat && sdk.chat) return sdk.chat(modelID) | |
| if (sdk.responses) return sdk.responses(modelID) | |
| if (sdk.messages) return sdk.messages(modelID) | |
| if (sdk.chat) return sdk.chat(modelID) | |
| return sdk.languageModel(modelID) | |
| } | |
| export const AzurePlugin = PluginV2.define({ | |
| id: PluginV2.ID.make("azure"), | |
| effect: Effect.gen(function* () { | |
| return { | |
| "catalog.transform": Effect.fn(function* (evt) { | |
| for (const item of evt.provider.list()) { | |
| if (item.provider.api.type !== "aisdk") continue | |
| if (item.provider.api.package !== "@ai-sdk/azure") continue | |
| const configured = item.provider.request.body.resourceName | |
| const resourceName = | |
| typeof configured === "string" && configured.trim() !== "" ? configured : process.env.AZURE_RESOURCE_NAME | |
| if (!resourceName) continue | |
| evt.provider.update(item.provider.id, (provider) => { | |
| provider.request.body.resourceName = resourceName | |
| }) | |
| } | |
| }), | |
| "aisdk.sdk": Effect.fn(function* (evt) { | |
| if (evt.package !== "@ai-sdk/azure") return | |
| if (evt.model.providerID === ProviderV2.ID.azure) { | |
| if ( | |
| !evt.options.resourceName && | |
| !evt.options.baseURL && | |
| (evt.model.api.type !== "aisdk" || !evt.model.api.url) | |
| ) { | |
| throw new Error( | |
| "AZURE_RESOURCE_NAME is missing, set it using env var or reconnecting the azure provider and setting it", | |
| ) | |
| } | |
| } | |
| const mod = yield* Effect.promise(() => import("@ai-sdk/azure")) | |
| evt.sdk = mod.createAzure(evt.options) | |
| }), | |
| "aisdk.language": Effect.fn(function* (evt) { | |
| if (evt.model.providerID !== ProviderV2.ID.azure) return | |
| evt.language = selectLanguage(evt.sdk, evt.model.api.id, Boolean(evt.options.useCompletionUrls)) | |
| }), | |
| } | |
| }), | |
| }) | |
| export const AzureCognitiveServicesPlugin = PluginV2.define({ | |
| id: PluginV2.ID.make("azure-cognitive-services"), | |
| effect: Effect.gen(function* () { | |
| return { | |
| "catalog.transform": Effect.fn(function* (evt) { | |
| const resourceName = process.env.AZURE_COGNITIVE_SERVICES_RESOURCE_NAME | |
| if (!resourceName) return | |
| for (const item of evt.provider.list()) { | |
| if (item.provider.api.type !== "aisdk") continue | |
| if (item.provider.api.package !== "@ai-sdk/openai-compatible") continue | |
| if (!item.provider.id.includes("azure-cognitive-services")) continue | |
| evt.provider.update(item.provider.id, (provider) => { | |
| provider.request.body.baseURL = `https://${resourceName}.cognitiveservices.azure.com/openai` | |
| }) | |
| } | |
| }), | |
| "aisdk.language": Effect.fn(function* (evt) { | |
| if (evt.model.providerID !== ProviderV2.ID.make("azure-cognitive-services")) return | |
| evt.language = selectLanguage(evt.sdk, evt.model.api.id, Boolean(evt.options.useCompletionUrls)) | |
| }), | |
| } | |
| }), | |
| }) | |
Xet Storage Details
- Size:
- 3.17 kB
- Xet hash:
- 8d1cae3460613e6b3087c8df5c502c69dba9ba685426e797a9902cfb801c762b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.