- Add one-click research protocol generation with streaming output - Implement Word document export via Pandoc integration - Add dynamic dual-panel layout with resizable split pane - Implement collapsible content for StatePanel stages - Add conversation history management with title auto-update - Fix scroll behavior, markdown rendering, and UI layout issues - Simplify conversation creation logic for reliability
51 lines
701 B
TypeScript
51 lines
701 B
TypeScript
/**
|
||
* RVW稿件审查模块 - 模块入口
|
||
* @module rvw
|
||
*
|
||
* 功能:
|
||
* - 稿约规范性评估(11项标准)
|
||
* - 方法学评估(3部分,20个检查点)
|
||
* - 智能体选择(可选1个或2个)
|
||
* - 批量审查支持
|
||
*/
|
||
|
||
// 导出路由
|
||
export { default as rvwRoutes } from './routes/index.js';
|
||
|
||
// 导出服务(供其他模块使用)
|
||
export * as reviewService from './services/reviewService.js';
|
||
export * as editorialService from './services/editorialService.js';
|
||
export * as methodologyService from './services/methodologyService.js';
|
||
|
||
// 导出类型
|
||
export * from './types/index.js';
|
||
|
||
// 导出工具函数
|
||
export * from './services/utils.js';
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|