Kaynağa Gözat

0.17.1 release notes (#6021)

### What problem does this PR solve?



### Type of change

- [x] Documentation Update
tags/v0.17.2
writinwaters 7 ay önce
ebeveyn
işleme
9c8060f619
No account linked to committer's email address

+ 1
- 0
docs/guides/agent/agent_component_reference/switch.mdx Dosyayı Görüntüle

@@ -34,6 +34,7 @@ Evaluates whether the output of specific components meets certain conditions, wi

:::danger IMPORTANT
When you have added multiple conditions for a specific case, a **Logical operator** field appears, requiring you to set the logical relationship between these conditions as either AND or OR.
![Image](https://github.com/user-attachments/assets/102f006e-9906-49c2-af43-de6af03d5074)
:::

- **Component ID**: The ID of the corresponding component.

+ 28
- 1
docs/release_notes.md Dosyayı Görüntüle

@@ -7,6 +7,33 @@ slug: /release_notes

Key features, improvements and bug fixes in the latest releases.

## v0.17.1

Released on March 11, 2025.

### Improvements

- Improves English tokenization quality.
- Improves the table extraction logic in Markdown document parsing.
- Updates SiliconFlow's model list.
- Supports parsing XLS files (Excel97~2003) with improved corresponding error handling.
- Supports Huggingface rerank models.
- Enables relative time expressions ("now", "yesterday", "last week", "next year", and more) in the **Rewrite** agent component.

### Fixed issues

- A repetitive knowledge graph extraction issue.
- Issues with API calling.
- Options in the **Document parser** dropdown are missing.
- A Tavily web search issue.
- Unable to preview diagrams or images in an AI chat.

### Documentation

#### Added documents

[Use tag set](./guides/dataset/use_tag_sets.md)

## v0.17.0

Released on March 3, 2025.
@@ -20,7 +47,7 @@ Released on March 3, 2025.
- Dataset: Adds a **Document parser** dropdown menu to dataset configurations. This includes a DeepDoc model option, which is time-consuming, a much faster **naive** option (plain text), which skips DLA (Document Layout Analysis), OCR (Optical Character Recognition), and TSR (Table Structure Recognition) tasks, and several currently *experimental* large model options.
- Agent component: **(x)** or a forward slash `/` can be used to insert available keys (variables) in the system prompt field of the **Generate** or **Template** component.
- Object storage: Supports using Aliyun OSS (Object Storage Service) as a file storage option.
- Models: Updates the supported model list for Tongyi-Qianwen, adding DeepSeek-specific models; adds ModelScope as a model provider.
- Models: Updates the supported model list for Tongyi-Qianwen (Qwen), adding DeepSeek-specific models; adds ModelScope as a model provider.
- APIs: Document metadata can be updated through an API.

The following diagram illustrates the workflow of RAGFlow's Deep Research:

+ 1
- 1
rag/llm/chat_model.py Dosyayı Görüntüle

@@ -30,7 +30,7 @@ import requests
import asyncio

LENGTH_NOTIFICATION_CN = "······\n由于大模型的上下文窗口大小限制,回答已经被大模型截断。"
LENGTH_NOTIFICATION_EN = "...\nThe answer is truncated by your chosen LLM due to its context length limitation."
LENGTH_NOTIFICATION_EN = "...\nThe answer is truncated by your chosen LLM due to its limitation on context length."


class Base(ABC):

Loading…
İptal
Kaydet