mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Miscelleneous editorial updates (#5390)
### What problem does this PR solve? ### Type of change - [x] Documentation Update
This commit is contained in:
@ -42,9 +42,9 @@ RAGFlow offers multiple chunking template to facilitate chunking files of differ
|
||||
| **Template** | Description | File format |
|
||||
|--------------|-----------------------------------------------------------------------|------------------------------------------------------|
|
||||
| General | Files are consecutively chunked based on a preset chunk token number. | DOCX, EXCEL, PPT, PDF, TXT, JPEG, JPG, PNG, TIF, GIF |
|
||||
| Q&A | | EXCEL, CSV/TXT |
|
||||
| Q&A | | XLSX, CSV/TXT |
|
||||
| Manual | | PDF |
|
||||
| Table | | EXCEL, CSV/TXT |
|
||||
| Table | | XLSX, CSV/TXT |
|
||||
| Paper | | PDF |
|
||||
| Book | | DOCX, PDF, TXT |
|
||||
| Laws | | DOCX, PDF, TXT |
|
||||
|
||||
@ -65,9 +65,9 @@ In a knowledge graph, a community is a cluster of entities linked by relationshi
|
||||
|
||||
2. The knowledge graph of your knowlege base does *not* automatically update *until* a newly uploaded file is parsed.
|
||||
|
||||
_A **Knowledge Graph** entry appears under **Configuration** once a knowledge graph is created._
|
||||
_A **Knowledge graph** entry appears under **Configuration** once a knowledge graph is created._
|
||||
|
||||
3. Click **Knowledge Graph** to view the details of the generated graph.
|
||||
3. Click **Knowledge graph** to view the details of the generated graph.
|
||||
|
||||
## Frequently asked questions
|
||||
|
||||
@ -81,4 +81,4 @@ Nope. The knowledge graph does *not* automatically update *until* a newly upload
|
||||
|
||||
### How to remove a generated knowledge graph?
|
||||
|
||||
To remove the generated knowledge graph, delete all related files in your knowledge base. Although the **Knowledge Graph** entry will still be visible, the graph has actually been deleted.
|
||||
To remove the generated knowledge graph, delete all related files in your knowledge base. Although the **Knowledge graph** entry will still be visible, the graph has actually been deleted.
|
||||
@ -223,9 +223,6 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
|
||||
/_/ |_|/_/ |_|\____//_/ /_/ \____/ |__/|__/
|
||||
|
||||
* Running on all addresses (0.0.0.0)
|
||||
* Running on http://127.0.0.1:9380
|
||||
* Running on http://x.x.x.x:9380
|
||||
INFO:werkzeug:Press CTRL+C to quit
|
||||
```
|
||||
|
||||
> If you skip this confirmation step and directly log in to RAGFlow, your browser may prompt a `network anomaly` error because, at that moment, your RAGFlow may not be fully initialized.
|
||||
|
||||
@ -12,7 +12,7 @@ A complete list of models supported by RAGFlow, which will continue to expand.
|
||||
<APITable>
|
||||
```
|
||||
|
||||
| Provider | Chat | Embedding | Rerank | Img2txt | Sequence2txt | TTS |
|
||||
| Provider | Chat | Embedding | Rerank | Img2txt | Speech2txt | TTS |
|
||||
| --------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
|
||||
| Anthropic | :heavy_check_mark: | | | | | |
|
||||
| Azure-OpenAI | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | |
|
||||
|
||||
@ -15,9 +15,9 @@ Released on February 6, 2025.
|
||||
|
||||
- Supports DeepSeek R1 and DeepSeek V3.
|
||||
- GraphRAG refactor: Knowledge graph is dynamically built on an entire knowledge base (dataset) rather than on an individual file, and automatically updated when a newly uploaded file starts parsing. See [here](https://ragflow.io/docs/dev/construct_knowledge_graph).
|
||||
- Adds an **Iteration** agent component and a **Research report generator** agent template. See [here](https://ragflow.io/docs/dev/iteration_component).
|
||||
- Adds an **Iteration** agent component and a **Research report generator** agent template. See [here](./references/agent_component_reference/iteration.mdx).
|
||||
- New UI language: Portuguese.
|
||||
- Allows setting metadata for a specific file in a knowledge base to enhance AI-powered chats. See [here](https://ragflow.io/docs/dev/set_metada).
|
||||
- Allows setting metadata for a specific file in a knowledge base to enhance AI-powered chats. See [here](./guides/configure_knowledge_base/set_metadata.md).
|
||||
- Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.6.0.dev3.
|
||||
- Supports GPU acceleration for DeepDoc (see [docker-compose-gpu.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose-gpu.yml)).
|
||||
- Supports creating and referencing a **Tag** knowledge base as a key milestone towards bridging the semantic gap between query and response.
|
||||
@ -30,22 +30,21 @@ The **Tag knowledge base** feature is *unavailable* on the [Infinity](https://gi
|
||||
|
||||
#### Added documents
|
||||
|
||||
- [Construct knowledge graph](https://ragflow.io/docs/dev/construct_knowledge_graph)
|
||||
- [Set metadata](https://ragflow.io/docs/dev/set_metada)
|
||||
- [Begin component](https://ragflow.io/docs/dev/begin_component)
|
||||
- [Generate component](https://ragflow.io/docs/dev/generate_component)
|
||||
- [Interact component](https://ragflow.io/docs/dev/interact_component)
|
||||
- [Retrieval component](https://ragflow.io/docs/dev/retrieval_component)
|
||||
- [Categorize component](https://ragflow.io/docs/dev/categorize_component)
|
||||
- [Keyword component](https://ragflow.io/docs/dev/keyword_component)
|
||||
- [Message component](https://ragflow.io/docs/dev/message_component)
|
||||
- [Rewrite component](https://ragflow.io/docs/dev/rewrite_component)
|
||||
- [Switch component](https://ragflow.io/docs/dev/switch_component)
|
||||
- [Concentrator component](https://ragflow.io/docs/dev/concentrator_component)
|
||||
- [Template component](https://ragflow.io/docs/dev/template_component)
|
||||
- [Iteration component](https://ragflow.io/docs/dev/iteration_component)
|
||||
- [Note component](https://ragflow.io/docs/dev/note_component)
|
||||
|
||||
- [Construct knowledge graph](./guides/configure_knowledge_base/construct_knowledge_graph.md)
|
||||
- [Set metadata](./guides/configure_knowledge_base/set_metadata.md)
|
||||
- [Begin component](./references/agent_component_reference/begin.mdx)
|
||||
- [Generate component](./references/agent_component_reference/generate.mdx)
|
||||
- [Interact component](./references/agent_component_reference/interact.mdx)
|
||||
- [Retrieval component](./references/agent_component_reference/retrieval.mdx)
|
||||
- [Categorize component](./references/agent_component_reference/categorize.mdx)
|
||||
- [Keyword component](./references/agent_component_reference/keyword.mdx)
|
||||
- [Message component](./references/agent_component_reference/message.mdx)
|
||||
- [Rewrite component](./references/agent_component_reference/rewrite.mdx)
|
||||
- [Switch component](./references/agent_component_reference/switch.mdx)
|
||||
- [Concentrator component](./references/agent_component_reference/concentrator.mdx)
|
||||
- [Template component](./references/agent_component_reference/template.mdx)
|
||||
- [Iteration component](./references/agent_component_reference/iteration.mdx)
|
||||
- [Note component](./references/agent_component_reference/note.mdx)
|
||||
|
||||
## v0.15.1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user