You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/develop/build_docker_image.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ After building the infiniflow/ragflow:nightly-slim image, you are ready to launc
77
77
78
78
1. Edit Docker Compose Configuration
79
79
80
-
Open the `docker/.env` file. Find the `RAGFLOW_IMAGE` setting and change the image reference from `infiniflow/ragflow:v0.17.2-slim` to `infiniflow/ragflow:nightly-slim` to use the pre-built image.
80
+
Open the `docker/.env` file. Find the `RAGFLOW_IMAGE` setting and change the image reference from `infiniflow/ragflow:v0.18.0-slim` to `infiniflow/ragflow:nightly-slim` to use the pre-built image.
Copy file name to clipboardExpand all lines: website/docs/guides/chat/start_chat.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ You start an AI conversation by creating an assistant.
44
44
- If **Rerank model** is selected, the hybrid score system uses keyword similarity and reranker score, and the default weight assigned to the reranker score is 1-0.7=0.3.
45
45
-**Variable** refers to the variables (keys) to be used in the system prompt. `{knowledge}` is a reserved variable. Click **Add** to add more variables for the system prompt.
46
46
- If you are uncertain about the logic behind **Variable**, leave it *as-is*.
47
-
- As of v0.17.2, if you add custom variables here, the only way you can pass in their values is to call:
47
+
- As of v0.18.0, if you add custom variables here, the only way you can pass in their values is to call:
48
48
- HTTP method [Converse with chat assistant](../../references/http_api_reference.md#converse-with-chat-assistant), or
49
49
- Python method [Converse with chat assistant](../../references/python_api_reference.md#converse-with-chat-assistant).
Copy file name to clipboardExpand all lines: website/docs/quickstart.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
39
39
40
40
`vm.max_map_count`. This value sets the maximum number of memory map areas a process may have. Its default value is 65530. While most applications require fewer than a thousand maps, reducing this value can result in abnormal behaviors, and the system will throw out-of-memory errors when a process reaches the limitation.
41
41
42
-
RAGFlow v0.17.2 uses Elasticsearch or [Infinity](https://github.com/infiniflow/infinity) for multiple recall. Setting the value of `vm.max_map_count` correctly is crucial to the proper functioning of the Elasticsearch component.
42
+
RAGFlow v0.18.0 uses Elasticsearch or [Infinity](https://github.com/infiniflow/infinity) for multiple recall. Setting the value of `vm.max_map_count` correctly is crucial to the proper functioning of the Elasticsearch component.
43
43
44
44
<Tabs
45
45
defaultValue="linux"
@@ -179,13 +179,13 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
3. Use the pre-built Docker images and start up the server:
186
186
187
187
:::tip NOTE
188
-
The command below downloads the `v0.17.2-slim` edition of the RAGFlow Docker image. Refer to the following table for descriptions of different RAGFlow editions. To download a RAGFlow edition different from `v0.17.2-slim`, update the `RAGFLOW_IMAGE` variable accordingly in **docker/.env** before using `docker compose` to start the server. For example: set `RAGFLOW_IMAGE=infiniflow/ragflow:v0.17.2` for the full edition `v0.17.2`.
188
+
The command below downloads the `v0.18.0-slim` edition of the RAGFlow Docker image. Refer to the following table for descriptions of different RAGFlow editions. To download a RAGFlow edition different from `v0.18.0-slim`, update the `RAGFLOW_IMAGE` variable accordingly in **docker/.env** before using `docker compose` to start the server. For example: set `RAGFLOW_IMAGE=infiniflow/ragflow:v0.18.0` for the full edition `v0.18.0`.
189
189
:::
190
190
191
191
```bash
@@ -202,8 +202,8 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
202
202
203
203
| RAGFlow image tag | Image size (GB) | Has embedding models and Python packages? | Stable? |
Copy file name to clipboardExpand all lines: website/docs/references/http_api_reference.md
+1-12
Original file line number
Diff line number
Diff line change
@@ -393,7 +393,6 @@ curl --request POST \
393
393
-`"presentation"`: Presentation
394
394
-`"picture"`: Picture
395
395
-`"one"`: One
396
-
-`"knowledge_graph"`: Knowledge Graph
397
396
Ensure your LLM is properly configured on the **Settings** page before selecting this. Please also note that Knowledge Graph consumes a large number of Tokens!
398
397
-`"email"`: Email
399
398
@@ -409,10 +408,6 @@ curl --request POST \
409
408
- If `"chunk_method"` is `"qa"`, `"manuel"`, `"paper"`, `"book"`, `"laws"`, or `"presentation"`, the `"parser_config"` object contains the following attribute:
410
409
-`"raptor"`: Raptor-specific settings. Defaults to: `{"use_raptor": false}`.
411
410
- If `"chunk_method"` is `"table"`, `"picture"`, `"one"`, or `"email"`, `"parser_config"` is an empty JSON object.
412
-
- If `"chunk_method"` is `"knowledge_graph"`, the `"parser_config"` object contains the following attributes:
413
-
-`"chunk_token_count"`: Defaults to `128`.
414
-
-`"delimiter"`: Defaults to `"\n"`.
415
-
-`"entity_types"`: Defaults to `["organization","person","location","event","time"]`
416
411
417
412
#### Response
418
413
@@ -573,8 +568,6 @@ curl --request PUT \
573
568
-`"picture"`: Picture
574
569
-`"one"`:One
575
570
-`"email"`: Email
576
-
-`"knowledge_graph"`: Knowledge Graph
577
-
Ensure your LLM is properly configured on the **Settings** page before selecting this. Please also note that Knowledge Graph consumes a large number of Tokens!
578
571
579
572
#### Response
580
573
@@ -655,7 +648,7 @@ Success:
655
648
"id": "6e211ee0723611efa10a0242ac120007",
656
649
"language": "English",
657
650
"name": "mysql",
658
-
"chunk_method": "knowledge_graph",
651
+
"chunk_method": "naive",
659
652
"parser_config": {
660
653
"chunk_token_num": 8192,
661
654
"delimiter": "\\n",
@@ -841,10 +834,6 @@ curl --request PUT \
841
834
- If `"chunk_method"` is `"qa"`, `"manuel"`, `"paper"`, `"book"`, `"laws"`, or `"presentation"`, the `"parser_config"` object contains the following attribute:
842
835
-`"raptor"`: Raptor-specific settings. Defaults to: `{"use_raptor": false}`.
843
836
- If `"chunk_method"` is `"table"`, `"picture"`, `"one"`, or `"email"`, `"parser_config"` is an empty JSON object.
844
-
- If `"chunk_method"` is `"knowledge_graph"`, the `"parser_config"` object contains the following attributes:
845
-
-`"chunk_token_count"`: Defaults to `128`.
846
-
-`"delimiter"`: Defaults to `"\n"`.
847
-
-`"entity_types"`: Defaults to `["organization","person","location","event","time"]`
Copy file name to clipboardExpand all lines: website/docs/references/python_api_reference.md
-4
Original file line number
Diff line number
Diff line change
@@ -145,8 +145,6 @@ The chunking method of the dataset to create. Available options:
145
145
-`"presentation"`: Presentation
146
146
-`"picture"`: Picture
147
147
-`"one"`: One
148
-
-`"knowledge_graph"`: Knowledge Graph
149
-
Ensure your LLM is properly configured on the **Settings** page before selecting this. Please also note that Knowledge Graph consumes a large number of Tokens!
150
148
-`"email"`: Email
151
149
152
150
##### parser_config
@@ -398,8 +396,6 @@ A dictionary representing the attributes to update, with the following keys:
398
396
-`"presentation"`: Presentation
399
397
-`"picture"`: Picture
400
398
-`"one"`: One
401
-
-`"knowledge_graph"`: Knowledge Graph
402
-
Ensure your LLM is properly configured on the **Settings** page before selecting this. Please also note that Knowledge Graph consumes a large number of Tokens!
403
399
-`"email"`: Email
404
400
-`"parser_config"`: `dict[str, Any]` The parsing configuration for the document. Its attributes vary based on the selected `"chunk_method"`:
0 commit comments