Buckets:
| export * as Catalog from "./catalog" | |
| import { Array, Context, Effect, Layer, Option, Order, pipe, Schema, Scope, Stream } from "effect" | |
| import { castDraft, enableMapSet, type Draft } from "immer" | |
| import { ModelV2 } from "./model" | |
| import { ModelRequest } from "./model-request" | |
| import { PluginV2 } from "./plugin" | |
| import { ProviderV2 } from "./provider" | |
| import { Location } from "./location" | |
| import { EventV2 } from "./event" | |
| import { Policy } from "./policy" | |
| import { State } from "./state" | |
| import { Credential } from "./credential" | |
| import { IntegrationSchema } from "./integration/schema" | |
| export type ProviderRecord = { | |
| provider: ProviderV2.Info | |
| models: Map<ModelV2.ID, ModelV2.Info> | |
| } | |
| export type DefaultModel = { providerID: ProviderV2.ID; modelID: ModelV2.ID } | |
| export class ProviderNotFoundError extends Schema.TaggedErrorClass<ProviderNotFoundError>()( | |
| "CatalogV2.ProviderNotFound", | |
| { | |
| providerID: ProviderV2.ID, | |
| }, | |
| ) {} | |
| export class ModelNotFoundError extends Schema.TaggedErrorClass<ModelNotFoundError>()("CatalogV2.ModelNotFound", { | |
| providerID: ProviderV2.ID, | |
| modelID: ModelV2.ID, | |
| }) {} | |
| export const PolicyActions = Schema.Literals(["provider.use"]) | |
| export const Event = { | |
| ModelUpdated: EventV2.define({ | |
| type: "catalog.model.updated", | |
| schema: { | |
| model: ModelV2.Info, | |
| }, | |
| }), | |
| } | |
| type Data = { | |
| providers: Map<ProviderV2.ID, ProviderRecord> | |
| defaultModel?: DefaultModel | |
| } | |
| export type Editor = { | |
| provider: { | |
| list: () => readonly ProviderRecord[] | |
| get: (providerID: ProviderV2.ID) => ProviderRecord | undefined | |
| update: (providerID: ProviderV2.ID, fn: (provider: Draft<ProviderV2.Info>) => void) => void | |
| remove: (providerID: ProviderV2.ID) => void | |
| } | |
| model: { | |
| get: (providerID: ProviderV2.ID, modelID: ModelV2.ID) => ModelV2.Info | undefined | |
| update: (providerID: ProviderV2.ID, modelID: ModelV2.ID, fn: (model: Draft<ModelV2.Info>) => void) => void | |
| remove: (providerID: ProviderV2.ID, modelID: ModelV2.ID) => void | |
| default: { | |
| get: () => DefaultModel | undefined | |
| set: (providerID: ProviderV2.ID, modelID: ModelV2.ID) => void | |
| } | |
| } | |
| } | |
| export interface Interface { | |
| readonly transform: State.Interface<Data, Editor>["transform"] | |
| readonly provider: { | |
| readonly get: (providerID: ProviderV2.ID) => Effect.Effect<ProviderV2.Info, ProviderNotFoundError> | |
| readonly all: () => Effect.Effect<ProviderV2.Info[]> | |
| readonly available: () => Effect.Effect<ProviderV2.Info[]> | |
| } | |
| readonly model: { | |
| readonly get: ( | |
| providerID: ProviderV2.ID, | |
| modelID: ModelV2.ID, | |
| ) => Effect.Effect<ModelV2.Info, ProviderNotFoundError | ModelNotFoundError> | |
| readonly all: () => Effect.Effect<ModelV2.Info[]> | |
| readonly available: () => Effect.Effect<ModelV2.Info[]> | |
| readonly default: () => Effect.Effect<Option.Option<ModelV2.Info>> | |
| readonly small: (providerID: ProviderV2.ID) => Effect.Effect<Option.Option<ModelV2.Info>> | |
| } | |
| } | |
| export class Service extends Context.Service<Service, Interface>()("@opencode/v2/Catalog") {} | |
| enableMapSet() | |
| export const layer = Layer.effect( | |
| Service, | |
| Effect.gen(function* () { | |
| const location = yield* Location.Service | |
| const plugin = yield* PluginV2.Service | |
| const events = yield* EventV2.Service | |
| const policy = yield* Policy.Service | |
| const credentials = yield* Credential.Service | |
| const scope = yield* Scope.Scope | |
| const project = (provider: ProviderV2.Info, active: Map<IntegrationSchema.ID, Credential.Stored>) => { | |
| const credential = active.get(IntegrationSchema.ID.make(provider.id)) | |
| if (!credential) return provider | |
| const body = { ...provider.request.body } | |
| if (credential.value.type === "key") { | |
| body.apiKey = credential.value.key | |
| Object.assign(body, credential.value.metadata ?? {}) | |
| } | |
| if (credential.value.type === "oauth") body.apiKey = credential.value.access | |
| return new ProviderV2.Info({ | |
| ...provider, | |
| enabled: { via: "credential", credentialID: credential.id }, | |
| request: { ...provider.request, body }, | |
| }) | |
| } | |
| const resolve = (model: ModelV2.Info, provider: ProviderV2.Info) => { | |
| const api = | |
| model.api.type === "native" && !model.api.url && Object.keys(model.api.settings).length === 0 | |
| ? { ...provider.api, id: model.api.id } | |
| : model.api.type === "aisdk" && provider.api.type === "aisdk" && !model.api.url | |
| ? { ...model.api, url: provider.api.url, settings: { ...provider.api.settings, ...model.api.settings } } | |
| : model.api.type === "aisdk" && provider.api.type === "aisdk" | |
| ? { ...model.api, settings: { ...provider.api.settings, ...model.api.settings } } | |
| : model.api | |
| const request = { | |
| ...ModelRequest.merge({ ...provider.request, generation: {}, options: {} }, model.request), | |
| variant: model.request.variant, | |
| } | |
| return new ModelV2.Info({ | |
| ...model, | |
| api, | |
| request, | |
| }) | |
| } | |
| function* getRecord(providerID: ProviderV2.ID) { | |
| const match = state.get().providers.get(providerID) | |
| if (!match) return yield* new ProviderNotFoundError({ providerID }) | |
| return match | |
| } | |
| const normalizeApi = (item: Draft<ProviderV2.Info> | Draft<ModelV2.Info>) => { | |
| if (typeof item.request.body.baseURL !== "string") return | |
| item.api.url = item.request.body.baseURL | |
| delete item.request.body.baseURL | |
| } | |
| const state = State.create<Data, Editor>({ | |
| initial: () => ({ providers: new Map() }), | |
| editor: (draft) => { | |
| const result: Editor = { | |
| provider: { | |
| list: () => Array.fromIterable(draft.providers.values()) as ProviderRecord[], | |
| get: (providerID) => draft.providers.get(providerID), | |
| update: (providerID, fn) => { | |
| let current = draft.providers.get(providerID) | |
| if (!current) { | |
| current = castDraft({ | |
| provider: ProviderV2.Info.empty(providerID), | |
| models: new Map<ModelV2.ID, ModelV2.Info>(), | |
| }) | |
| draft.providers.set(providerID, current) | |
| } | |
| fn(current.provider) | |
| normalizeApi(current.provider) | |
| }, | |
| remove: (providerID) => { | |
| draft.providers.delete(providerID) | |
| }, | |
| }, | |
| model: { | |
| get: (providerID, modelID) => draft.providers.get(providerID)?.models.get(modelID), | |
| update: (providerID, modelID, fn) => { | |
| let record = draft.providers.get(providerID) | |
| if (!record) { | |
| record = castDraft({ | |
| provider: ProviderV2.Info.empty(providerID), | |
| models: new Map<ModelV2.ID, ModelV2.Info>(), | |
| }) | |
| draft.providers.set(providerID, record) | |
| } | |
| const model = record.models.get(modelID) ?? castDraft(ModelV2.Info.empty(providerID, modelID)) | |
| if (!record.models.has(modelID)) record.models.set(modelID, model) | |
| fn(model) | |
| model.id = modelID | |
| model.providerID = providerID | |
| normalizeApi(model) | |
| }, | |
| remove: (providerID, modelID) => { | |
| draft.providers.get(providerID)?.models.delete(modelID) | |
| }, | |
| default: { | |
| get: () => draft.defaultModel, | |
| set: (providerID, modelID) => { | |
| draft.defaultModel = { providerID, modelID } | |
| }, | |
| }, | |
| }, | |
| } | |
| return result | |
| }, | |
| finalize: Effect.fn("CatalogV2.finalize")(function* (catalog, reason) { | |
| if (reason !== "plugin.added") yield* plugin.trigger("catalog.transform", catalog, {}).pipe(Effect.asVoid) | |
| if (!policy.hasStatements()) return | |
| for (const record of [...catalog.provider.list()]) { | |
| if ((yield* policy.evaluate("provider.use", record.provider.id, "allow")) === "deny") { | |
| catalog.provider.remove(record.provider.id) | |
| } | |
| } | |
| }), | |
| }) | |
| const active = Effect.fn("CatalogV2.active")(function* () { | |
| return new Map((yield* credentials.all()).map((credential) => [credential.integrationID, credential])) | |
| }) | |
| yield* events.subscribe(PluginV2.Event.Added).pipe( | |
| // Plugin registries are location scoped even though the event bus is process scoped. | |
| Stream.filter( | |
| (event) => | |
| event.location?.directory === location.directory && event.location.workspaceID === location.workspaceID, | |
| ), | |
| Stream.runForEach((event) => | |
| state.mutate((catalog) => plugin.triggerFor(event.data.id, "catalog.transform", catalog, {}), "plugin.added"), | |
| ), | |
| Effect.forkIn(scope, { startImmediately: true }), | |
| ) | |
| const result: Interface = { | |
| transform: state.transform, | |
| provider: { | |
| get: Effect.fn("CatalogV2.provider.get")(function* (providerID) { | |
| const record = yield* getRecord(providerID) | |
| return project(record.provider, yield* active()) | |
| }), | |
| all: Effect.fn("CatalogV2.provider.all")(function* () { | |
| const credentials = yield* active() | |
| return Array.fromIterable(state.get().providers.values()).map((record) => | |
| project(record.provider, credentials), | |
| ) | |
| }), | |
| available: Effect.fn("CatalogV2.provider.available")(function* () { | |
| return (yield* result.provider.all()).filter((provider) => provider.enabled) | |
| }), | |
| }, | |
| model: { | |
| get: Effect.fn("CatalogV2.model.get")(function* (providerID, modelID) { | |
| const record = yield* getRecord(providerID) | |
| const model = record.models.get(modelID) | |
| if (!model) return yield* new ModelNotFoundError({ providerID, modelID }) | |
| return resolve(model, project(record.provider, yield* active())) | |
| }), | |
| all: Effect.fn("CatalogV2.model.all")(function* () { | |
| const credentials = yield* active() | |
| return pipe( | |
| Array.fromIterable(state.get().providers.values()), | |
| Array.flatMap((record) => { | |
| const provider = project(record.provider, credentials) | |
| return Array.fromIterable(record.models.values()).map((model) => resolve(model, provider)) | |
| }), | |
| Array.sortWith((item) => item.time.released.epochMilliseconds, Order.flip(Order.Number)), | |
| ) | |
| }), | |
| available: Effect.fn("CatalogV2.model.available")(function* () { | |
| const providers = new Map((yield* result.provider.all()).map((provider) => [provider.id, provider])) | |
| return (yield* result.model.all()).filter( | |
| (model) => providers.get(model.providerID)?.enabled !== false && model.enabled, | |
| ) | |
| }), | |
| default: Effect.fn("CatalogV2.model.default")(function* () { | |
| const defaultModel = state.get().defaultModel | |
| if (defaultModel) { | |
| const provider = yield* result.provider.get(defaultModel.providerID).pipe(Effect.option) | |
| if (Option.isSome(provider) && provider.value.enabled !== false) { | |
| const model = yield* result.model.get(defaultModel.providerID, defaultModel.modelID).pipe(Effect.option) | |
| if (Option.isSome(model) && model.value.enabled) return model | |
| } | |
| } | |
| return pipe( | |
| yield* result.model.available(), | |
| Array.sortWith((item) => item.time.released.epochMilliseconds, Order.flip(Order.Number)), | |
| Array.head, | |
| ) | |
| }), | |
| small: Effect.fn("CatalogV2.model.small")(function* (providerID) { | |
| const record = state.get().providers.get(providerID) | |
| if (!record) return Option.none<ModelV2.Info>() | |
| const provider = project(record.provider, yield* active()) | |
| if (providerID === ProviderV2.ID.opencode) { | |
| const gpt5Nano = record.models.get(ModelV2.ID.make("gpt-5-nano")) | |
| if (gpt5Nano?.enabled && gpt5Nano.status === "active") return Option.some(resolve(gpt5Nano, provider)) | |
| } | |
| const candidates = pipe( | |
| Array.fromIterable(record.models.values()), | |
| Array.filter( | |
| (model) => | |
| model.providerID === providerID && | |
| model.enabled && | |
| model.status === "active" && | |
| model.capabilities.input.some((item) => item.startsWith("text")) && | |
| model.capabilities.output.some((item) => item.startsWith("text")), | |
| ), | |
| Array.map((model) => ({ | |
| model, | |
| cost: model.cost[0] ? model.cost[0].input + model.cost[0].output : 999, | |
| age: (Date.now() - model.time.released.epochMilliseconds) / (1000 * 60 * 60 * 24 * 30), | |
| small: SMALL_MODEL_RE.test(`${model.id} ${model.family ?? ""} ${model.name}`.toLowerCase()), | |
| })), | |
| Array.filter((item) => item.cost > 0 && item.age <= 18), | |
| ) | |
| const pick = (items: typeof candidates) => { | |
| const maxCost = Math.max(...items.map((item) => item.cost), 0.01) | |
| const maxAge = Math.max(...items.map((item) => item.age), 0.01) | |
| return pipe( | |
| items, | |
| Array.sortWith((item) => (item.cost / maxCost) * 0.8 + (item.age / maxAge) * 0.2, Order.Number), | |
| Array.map((item) => resolve(item.model, provider)), | |
| Array.head, | |
| ) | |
| } | |
| return pipe( | |
| candidates, | |
| Array.filter((item) => item.small), | |
| (items) => (items.length > 0 ? pick(items) : pick(candidates)), | |
| ) | |
| }), | |
| }, | |
| } | |
| return Service.of(result) | |
| }), | |
| ) | |
| const SMALL_MODEL_RE = /\b(nano|flash|lite|mini|haiku|small|fast)\b/ | |
| export const locationLayer = layer.pipe( | |
| Layer.provideMerge(PluginV2.locationLayer), | |
| Layer.provideMerge(Policy.locationLayer), | |
| ) | |
Xet Storage Details
- Size:
- 14 kB
- Xet hash:
- cd915b54c95a3c2de5acacb8a1ae70124051eda6b5ccc6a32bfdd905e419fcc1
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.