mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-27 04:41:55 +00:00
8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
export * as AI from "./ai.js"
|
|
|
|
import { Schema } from "effect"
|
|
|
|
export const ProviderMetadata = Schema.Record(Schema.String, Schema.Record(Schema.String, Schema.Unknown)).annotate({
|
|
identifier: "AI.ProviderMetadata",
|
|
})
|
|
export type ProviderMetadata = Schema.Schema.Type<typeof ProviderMetadata>
|