fix(cli): preserve installer fallback chains in generated config (#3144)

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-06 13:17:38 +09:00
parent abda3c52f0
commit 57b152994f
3 changed files with 87 additions and 4 deletions
+4
View File
@@ -1,3 +1,5 @@
import type { FallbackModelObject } from "../config/schema/fallback-models"
export interface ProviderAvailability {
native: {
claude: boolean
@@ -15,11 +17,13 @@ kimiForCoding: boolean
export interface AgentConfig {
model: string
variant?: string
fallback_models?: FallbackModelObject[]
}
export interface CategoryConfig {
model: string
variant?: string
fallback_models?: FallbackModelObject[]
}
export interface GeneratedOmoConfig {