Skip to content

Commit

Permalink
Updated UI (#3639)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
writinwaters authored Nov 25, 2024
1 parent 49494d4 commit 769c67a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- **docker-compose.yml**
Sets up environment for RAGFlow and its dependencies.
- **docker-compose-base.yml**
Sets up environment for RAGFlow's base services: Elasticsearch, MySQL, MinIO, and Redis.
Sets up environment for RAGFlow's dependencies: Elasticsearch, MySQL, MinIO, and Redis.

## 🐬 Docker environment variables

Expand Down
4 changes: 2 additions & 2 deletions docs/configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: /configurations

# Configurations

Configurations for installing RAGFlow via Docker.
Configurations for deploying RAGFlow via Docker.

## Guidelines

Expand All @@ -32,7 +32,7 @@ docker compose -f docker/docker-compose.yml up -d
- **docker-compose.yml**
Sets up environment for RAGFlow and its dependencies.
- **docker-compose-base.yml**
Sets up environment for RAGFlow's base services: Elasticsearch, MySQL, MinIO, and Redis.
Sets up environment for RAGFlow's dependencies: Elasticsearch, MySQL, MinIO, and Redis.

## Docker environment variables

Expand Down
8 changes: 4 additions & 4 deletions web/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,17 @@ export default {
runningStatus4: 'FAIL',
pageRanges: 'Page Ranges',
pageRangesTip:
'page ranges: Define the page ranges that need to be parsed. The pages that not included in these ranges will be ignored.',
'Range of pages to be parsed; pages outside this range will not be processed.',
fromPlaceholder: 'from',
fromMessage: 'Missing start page number',
toPlaceholder: 'to',
toMessage: 'Missing end page number(excluded)',
toMessage: 'Missing end page number (excluded)',
layoutRecognize: 'Layout recognition',
layoutRecognizeTip:
'Use visual models for layout analysis to better identify document structure, find where the titles, text blocks, images, and tables are. Without this feature, only the plain text of the PDF can be obtained.',
'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.',
taskPageSize: 'Task page size',
taskPageSizeMessage: 'Please input your task page size!',
taskPageSizeTip: `If using layout recognize, the PDF file will be split into groups of successive. Layout analysis will be performed parallelly between groups to increase the processing speed. The 'Task page size' determines the size of groups. The larger the page size is, the lower the chance of splitting continuous text between pages into different chunks.`,
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.`,
addPage: 'Add page',
greaterThan: 'The current value must be greater than to!',
greaterThanPrevious:
Expand Down

0 comments on commit 769c67a

Please sign in to comment.