writinwaters
commited on
Commit
·
f28ed6a
1
Parent(s):
9ac360f
Updated UI (#3639)
Browse files### What problem does this PR solve?
_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._
### Type of change
- [x] Documentation Update
- docker/README.md +1 -1
- docs/configurations.md +2 -2
- web/src/locales/en.ts +4 -4
docker/README.md
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
- **docker-compose.yml**
|
15 |
Sets up environment for RAGFlow and its dependencies.
|
16 |
- **docker-compose-base.yml**
|
17 |
-
Sets up environment for RAGFlow's
|
18 |
|
19 |
## 🐬 Docker environment variables
|
20 |
|
|
|
14 |
- **docker-compose.yml**
|
15 |
Sets up environment for RAGFlow and its dependencies.
|
16 |
- **docker-compose-base.yml**
|
17 |
+
Sets up environment for RAGFlow's dependencies: Elasticsearch, MySQL, MinIO, and Redis.
|
18 |
|
19 |
## 🐬 Docker environment variables
|
20 |
|
docs/configurations.md
CHANGED
@@ -5,7 +5,7 @@ slug: /configurations
|
|
5 |
|
6 |
# Configurations
|
7 |
|
8 |
-
Configurations for
|
9 |
|
10 |
## Guidelines
|
11 |
|
@@ -32,7 +32,7 @@ docker compose -f docker/docker-compose.yml up -d
|
|
32 |
- **docker-compose.yml**
|
33 |
Sets up environment for RAGFlow and its dependencies.
|
34 |
- **docker-compose-base.yml**
|
35 |
-
Sets up environment for RAGFlow's
|
36 |
|
37 |
## Docker environment variables
|
38 |
|
|
|
5 |
|
6 |
# Configurations
|
7 |
|
8 |
+
Configurations for deploying RAGFlow via Docker.
|
9 |
|
10 |
## Guidelines
|
11 |
|
|
|
32 |
- **docker-compose.yml**
|
33 |
Sets up environment for RAGFlow and its dependencies.
|
34 |
- **docker-compose-base.yml**
|
35 |
+
Sets up environment for RAGFlow's dependencies: Elasticsearch, MySQL, MinIO, and Redis.
|
36 |
|
37 |
## Docker environment variables
|
38 |
|
web/src/locales/en.ts
CHANGED
@@ -127,17 +127,17 @@ export default {
|
|
127 |
runningStatus4: 'FAIL',
|
128 |
pageRanges: 'Page Ranges',
|
129 |
pageRangesTip:
|
130 |
-
'
|
131 |
fromPlaceholder: 'from',
|
132 |
fromMessage: 'Missing start page number',
|
133 |
toPlaceholder: 'to',
|
134 |
-
toMessage: 'Missing end page number(excluded)',
|
135 |
layoutRecognize: 'Layout recognition',
|
136 |
layoutRecognizeTip:
|
137 |
-
'Use visual models for layout analysis to better
|
138 |
taskPageSize: 'Task page size',
|
139 |
taskPageSizeMessage: 'Please input your task page size!',
|
140 |
-
taskPageSizeTip: `
|
141 |
addPage: 'Add page',
|
142 |
greaterThan: 'The current value must be greater than to!',
|
143 |
greaterThanPrevious:
|
|
|
127 |
runningStatus4: 'FAIL',
|
128 |
pageRanges: 'Page Ranges',
|
129 |
pageRangesTip:
|
130 |
+
'Range of pages to be parsed; pages outside this range will not be processed.',
|
131 |
fromPlaceholder: 'from',
|
132 |
fromMessage: 'Missing start page number',
|
133 |
toPlaceholder: 'to',
|
134 |
+
toMessage: 'Missing end page number (excluded)',
|
135 |
layoutRecognize: 'Layout recognition',
|
136 |
layoutRecognizeTip:
|
137 |
+
'Use visual models for layout analysis to better understand the structure of the document and effectively locate document titles, text blocks, images, and tables. If disabled, only the plain text from the PDF will be retrieved.',
|
138 |
taskPageSize: 'Task page size',
|
139 |
taskPageSizeMessage: 'Please input your task page size!',
|
140 |
+
taskPageSizeTip: `During layout recognition, a PDF file is split into chunks and processed in parallel to increase processing speed. This parameter sets the size of each chunk. A larger chunk size reduces the likelihood of splitting continuous text between pages.`,
|
141 |
addPage: 'Add page',
|
142 |
greaterThan: 'The current value must be greater than to!',
|
143 |
greaterThanPrevious:
|