Added 0.17.0 release notes (#5608)

### What problem does this PR solve?



### Type of change


- [x] Documentation Update
This commit is contained in:
writinwaters
2025-03-04 19:21:28 +08:00
committed by GitHub
parent f256e1a59a
commit fb4b5b0a06
26 changed files with 132 additions and 56 deletions

View File

@ -534,8 +534,8 @@ This auto-tag feature enhances retrieval by adding another layer of domain-speci
reasoningTip:
'It will trigger reasoning process like Deepseek-R1/OpenAI o1. Integrates an agentic search process into the reasoning workflow, allowing models itself to dynamically retrieve external knowledge whenever they encounter uncertain information.',
tavilyApiKeyTip:
'If API key is set correctly, it will utilize Tavily to do web search as a supplement to knowledge bases.',
tavilyApiKeyMessage: 'Please enter your Tavily Api Key',
'If an API key is correctly set here, Tavily-based web searches will be used to supplement knowledge base retrieval.',
tavilyApiKeyMessage: 'Please enter your Tavily API Key',
tavilyApiKeyHelp: 'How to get it?',
},
setting: {

View File

@ -106,7 +106,7 @@ export default {
processBeginAt: '流程開始於',
processDuration: '過程持續時間',
progressMsg: '進度消息',
testingDescription: '最後一步!成功後,剩下的就交給 RAGFlow 吧。',
testingDescription: '完成召回測試:確保你的設定可以從資料庫正確地召回文字區塊。',
similarityThreshold: '相似度閾值',
similarityThresholdTip:
'我們使用混合相似度得分來評估兩行文本之間的距離。它是加權關鍵詞相似度和向量餘弦相似度。如果查詢和塊之間的相似度小於此閾值,則該塊將被過濾掉。',
@ -514,7 +514,7 @@ export default {
'它將觸發類似Deepseek-R1/OpenAI o1的推理過程。將代理搜尋過程整合到推理工作流程中使得模型本身能夠在遇到不確定資訊時動態地檢索外部知識。',
tavilyApiKeyTip:
'如果 API 金鑰設定正確,它將利用 Tavily 進行網路搜尋作為知識庫的補充。',
tavilyApiKeyMessage: '請輸入你的 Tavily Api Key',
tavilyApiKeyMessage: '請輸入你的 Tavily API Key',
tavilyApiKeyHelp: '如何獲取?',
},
setting: {

View File

@ -106,7 +106,7 @@ export default {
processBeginAt: '开始于',
processDuration: '持续时间',
progressMsg: '进度',
testingDescription: '最后一步! 成功后,剩下的就交给 RAGFlow 吧。',
testingDescription: '请完成召回测试:确保你的配置可以从数据库召回正确的文本块。',
similarityThreshold: '相似度阈值',
similarityThresholdTip:
'我们使用混合相似度得分来评估两行文本之间的距离。 它是加权关键词相似度和向量余弦相似度。 如果查询和块之间的相似度小于此阈值,则该块将被过滤掉。',
@ -530,7 +530,7 @@ General实体和关系提取提示来自 GitHub - microsoft/graphrag基于
'它将像Deepseek-R1 / OpenAI o1一样触发推理过程。将代理搜索过程集成到推理工作流中允许模型本身在遇到不确定信息时动态地检索外部知识。',
tavilyApiKeyTip:
'如果 API 密钥设置正确,它将利用 Tavily 进行网络搜索作为知识库的补充。',
tavilyApiKeyMessage: '请输入你的 Tavily Api Key',
tavilyApiKeyMessage: '请输入你的 Tavily API Key',
tavilyApiKeyHelp: '如何获取?',
},
setting: {

View File

@ -147,7 +147,7 @@ const AssistantSetting = ({
>
<Switch onChange={handleTtsChange} />
</Form.Item>
<Form.Item label={'Tavily Api Key'} tooltip={t('tavilyApiKeyTip')}>
<Form.Item label={'Tavily API Key'} tooltip={t('tavilyApiKeyTip')}>
<div className="flex flex-col gap-1">
<Form.Item name={['prompt_config', 'tavily_api_key']} noStyle>
<Input.Password placeholder={t('tavilyApiKeyMessage')} />