mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 06:18:29 +00:00
9 lines
378 B
TypeScript
9 lines
378 B
TypeScript
import { Schema } from "effect"
|
|
|
|
// @ts-expect-error dead V1 retains the former value-style ModelsDev status re-export.
|
|
export { CatalogModelStatus } from "@opencode-ai/core/models-dev"
|
|
|
|
export const ModelStatus = Schema.Literals(["alpha", "beta", "deprecated", "active"])
|
|
export type ModelStatus = typeof ModelStatus.Type
|
|
|
|
export * as ProviderModelStatus from "./model-status"
|