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>
|