2026-05-09 23:20:31 +00:00
|
|
|
import { Schema } from "effect"
|
|
|
|
|
|
2026-05-18 01:59:44 +00:00
|
|
|
export { CatalogModelStatus } from "@opencode-ai/core/models-dev"
|
2026-05-09 23:20:31 +00:00
|
|
|
|
|
|
|
|
export const ModelStatus = Schema.Literals(["alpha", "beta", "deprecated", "active"])
|
|
|
|
|
export type ModelStatus = typeof ModelStatus.Type
|
|
|
|
|
|
|
|
|
|
export * as ProviderModelStatus from "./model-status"
|