balibabu commited on
Commit
2df5d5b
·
1 Parent(s): c939fd2

feat: support Self-RAG #1069 (#1079)

Browse files

### What problem does this PR solve?

feat: support Self-RAG #1069
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

web/src/locales/en.ts CHANGED
@@ -379,6 +379,8 @@ The above is the content you need to summarize.`,
379
  'This sets the maximum length of the model’s output, measured in the number of tokens (words or pieces of words).',
380
  quote: 'Show Quote',
381
  quoteTip: 'Should the source of the original text be displayed?',
 
 
382
  overview: 'Chat Bot API',
383
  pv: 'Number of messages',
384
  uv: 'Active user number',
 
379
  'This sets the maximum length of the model’s output, measured in the number of tokens (words or pieces of words).',
380
  quote: 'Show Quote',
381
  quoteTip: 'Should the source of the original text be displayed?',
382
+ selfRag: 'Self-RAG',
383
+ selfRagTip: 'Please refer to: https://huggingface.co/papers/2310.11511',
384
  overview: 'Chat Bot API',
385
  pv: 'Number of messages',
386
  uv: 'Active user number',
web/src/locales/zh-traditional.ts CHANGED
@@ -350,6 +350,8 @@ export default {
350
  '這設置了模型輸出的最大長度,以標記(單詞或單詞片段)的數量來衡量。',
351
  quote: '顯示引文',
352
  quoteTip: '是否應該顯示原文出處?',
 
 
353
  overview: '聊天 API',
354
  pv: '消息數',
355
  uv: '活躍用戶數',
 
350
  '這設置了模型輸出的最大長度,以標記(單詞或單詞片段)的數量來衡量。',
351
  quote: '顯示引文',
352
  quoteTip: '是否應該顯示原文出處?',
353
+ selfRag: '自反令牌',
354
+ selfRagTip: '請參考: https://huggingface.co/papers/2310.11511',
355
  overview: '聊天 API',
356
  pv: '消息數',
357
  uv: '活躍用戶數',
web/src/locales/zh.ts CHANGED
@@ -367,6 +367,8 @@ export default {
367
  '这设置了模型输出的最大长度,以标记(单词或单词片段)的数量来衡量。',
368
  quote: '显示引文',
369
  quoteTip: '是否应该显示原文出处?',
 
 
370
  overview: '聊天 API',
371
  pv: '消息数',
372
  uv: '活跃用户数',
 
367
  '这设置了模型输出的最大长度,以标记(单词或单词片段)的数量来衡量。',
368
  quote: '显示引文',
369
  quoteTip: '是否应该显示原文出处?',
370
+ selfRag: '自反令牌',
371
+ selfRagTip: '请参考: https://huggingface.co/papers/2310.11511',
372
  overview: '聊天 API',
373
  pv: '消息数',
374
  uv: '活跃用户数',
web/src/pages/chat/chat-configuration-modal/assistant-setting.tsx CHANGED
@@ -90,6 +90,15 @@ const AssistantSetting = ({ show }: ISegmentedContentProps) => {
90
  >
91
  <Switch />
92
  </Form.Item>
 
 
 
 
 
 
 
 
 
93
  <KnowledgeBaseItem></KnowledgeBaseItem>
94
  </section>
95
  );
 
90
  >
91
  <Switch />
92
  </Form.Item>
93
+ <Form.Item
94
+ label={t('selfRag')}
95
+ valuePropName="checked"
96
+ name={['prompt_config', 'self_rag']}
97
+ tooltip={t('selfRagTip')}
98
+ initialValue={true}
99
+ >
100
+ <Switch />
101
+ </Form.Item>
102
  <KnowledgeBaseItem></KnowledgeBaseItem>
103
  </section>
104
  );