/** * 默认模型设置 */ export declare const DEFAULT_MODEL_SETTINGS: { temperature: number; topP: number; maxTokens: number; }; /** * 支持的提供商类型 */ export declare enum ProviderType { OPENAI = "openai", OLLAMA = "ollama", ZHIPU = "zhipu", OPENROUTER = "openrouter", SILICONFLOW = "siliconflow", DEEPSEEK = "deepseek" }