Files
AIclinicalresearch/backend/src/modules/rvw/index.ts
HaHafeng 303dd78c54 feat(aia): Protocol Agent MVP complete with one-click generation and Word export
- 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
2026-01-25 19:16:36 +08:00

51 lines
701 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 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';