12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
export interface ModelOption {
|
|
id: string;
|
|
label: string;
|
|
}
|
|
|
|
export const AVAILABLE_MODELS: ModelOption[] = [
|
|
{ id: 'general', label: '通用模式' },
|
|
{ id: 'opencode-go', label: 'DeepSeek V4 Flash' },
|
|
];
|
|
|
|
export const DEFAULT_MODEL = 'general';
|