|
5 | 5 | <title>TrustRAG - 可靠输入与可信输出的RAG框架</title> |
6 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
7 | 7 | <meta name="description" content="TrustRAG是一款配置化模块化的Retrieval-Augmented Generation (RAG) 框架"> |
| 8 | + <meta name="author" content="网络数据科学与技术重点实验室 GoMate团队"> |
| 9 | + <meta name="keywords" content="RAG, TrustRAG, 检索增强生成, GoMate, 中科院"> |
8 | 10 | <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> |
9 | 11 | <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> |
10 | 12 | <link rel="icon" href="https://github.com/gomate-community.png" type="image/png"> |
|
52 | 54 | var editHtml = '[:memo: 编辑此页](' + url + ')\n' |
53 | 55 | return editHtml + html |
54 | 56 | }) |
| 57 | + }, |
| 58 | + function(hook, vm) { |
| 59 | + hook.afterEach(function (html, next) { |
| 60 | + var footer = ` |
| 61 | + <hr style="margin-top: 50px; border: none; border-top: 1px solid #eee;"> |
| 62 | + <div style="text-align: center; padding: 20px; color: #666; font-size: 14px; line-height: 1.6;"> |
| 63 | + <div style="margin-bottom: 15px;"> |
| 64 | + <strong>🏛️ 研究与开发团队</strong><br> |
| 65 | + 本项目由网络数据科学与技术重点实验室 <a href="https://github.com/gomate-community" target="_blank" style="color: #42b983; text-decoration: none;"><strong>GoMate</strong></a> 团队完成<br> |
| 66 | + 团队指导老师为郭嘉丰、范意兴研究员 |
| 67 | + </div> |
| 68 | + <div style="background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 15px 0; text-align: left; font-family: 'Courier New', monospace; font-size: 12px;"> |
| 69 | + <strong>📄 Citation</strong><br> |
| 70 | + <code style="display: block; white-space: pre-wrap; color: #333;">@article{fan2025trustrag, |
| 71 | + title={TrustRAG: An Information Assistant with Retrieval Augmented Generation}, |
| 72 | + author={Fan, Yixing and Yan, Qiang and Wang, Wenshan and Guo, Jiafeng and Zhang, Ruqing and Cheng, Xueqi}, |
| 73 | + journal={arXiv preprint arXiv:2502.13719}, |
| 74 | + year={2025}, |
| 75 | + url={https://arxiv.org/abs/2502.13719} |
| 76 | +}</code> |
| 77 | + </div> |
| 78 | + <div style="font-size: 12px; color: #999;"> |
| 79 | + © 2025 GoMate Team. All rights reserved. |
| 80 | + </div> |
| 81 | + </div>` |
| 82 | + next(html + footer) |
| 83 | + }) |
55 | 84 | } |
56 | 85 | ] |
57 | 86 | } |
|
0 commit comments