/** * 获取当前页面选择的模型ID。 */ export declare const getPageModel: () => Promise; /** * 获取当前页面设置的系统提示词。 */ export declare const getPageSystemPrompt: () => Promise; /** * 获取当前页面设置的Function Call工具。 */ export declare const getPageFunctionCallTools: () => Promise; /** * 从页面读取所有相关配置并聚合成一个对象。 */ export declare const getPageConfig: () => Promise<{ model: string | null; systemPrompt: string | null; tools: any[] | null; }>; //# sourceMappingURL=reader.d.ts.map