chore: include pre-built dist for github install
This commit is contained in:
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
export interface ProviderAvailability {
|
||||
native: {
|
||||
claude: boolean;
|
||||
openai: boolean;
|
||||
gemini: boolean;
|
||||
};
|
||||
opencodeZen: boolean;
|
||||
copilot: boolean;
|
||||
zai: boolean;
|
||||
kimiForCoding: boolean;
|
||||
opencodeGo: boolean;
|
||||
isMaxPlan: boolean;
|
||||
}
|
||||
export interface AgentConfig {
|
||||
model: string;
|
||||
variant?: string;
|
||||
}
|
||||
export interface CategoryConfig {
|
||||
model: string;
|
||||
variant?: string;
|
||||
}
|
||||
export interface GeneratedOmoConfig {
|
||||
$schema: string;
|
||||
agents?: Record<string, AgentConfig>;
|
||||
categories?: Record<string, CategoryConfig>;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
Reference in New Issue
Block a user