jinhai-2012 commited on
Commit
d6ada66
Β·
1 Parent(s): 0de98c4

Fix error commands (#2778)

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] Bug Fix (non-breaking change which fixes an issue)

Signed-off-by: Jin Hai <[email protected]>

README_ja.md CHANGED
@@ -137,7 +137,6 @@
137
 
138
  ```bash
139
  $ cd ragflow/docker
140
- $ chmod +x ./entrypoint.sh
141
  $ docker compose up -d
142
  ```
143
 
 
137
 
138
  ```bash
139
  $ cd ragflow/docker
 
140
  $ docker compose up -d
141
  ```
142
 
README_ko.md CHANGED
@@ -141,7 +141,6 @@
141
  > λ‹€μŒ λͺ…λ Ήμ–΄λ₯Ό μ‹€ν–‰ν•˜λ©΄ *dev* λ²„μ „μ˜ RAGFlow Docker 이미지가 μžλ™μœΌλ‘œ λ‹€μš΄λ‘œλ“œλ©λ‹ˆλ‹€. νŠΉμ • Docker 버전을 λ‹€μš΄λ‘œλ“œν•˜κ³  μ‹€ν–‰ν•˜λ €λ©΄, **docker/.env** νŒŒμΌμ—μ„œ `RAGFLOW_IMAGE`을 μ›ν•˜λŠ” λ²„μ „μœΌλ‘œ μ—…λ°μ΄νŠΈν•œ ν›„, 예λ₯Ό λ“€μ–΄ `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`둜 μ—…λ°μ΄νŠΈ ν•œ λ’€, λ‹€μŒ λͺ…λ Ήμ–΄λ₯Ό μ‹€ν–‰ν•˜μ„Έμš”.
142
  ```bash
143
  $ cd ragflow/docker
144
- $ chmod +x ./entrypoint.sh
145
  $ docker compose up -d
146
  ```
147
 
 
141
  > λ‹€μŒ λͺ…λ Ήμ–΄λ₯Ό μ‹€ν–‰ν•˜λ©΄ *dev* λ²„μ „μ˜ RAGFlow Docker 이미지가 μžλ™μœΌλ‘œ λ‹€μš΄λ‘œλ“œλ©λ‹ˆλ‹€. νŠΉμ • Docker 버전을 λ‹€μš΄λ‘œλ“œν•˜κ³  μ‹€ν–‰ν•˜λ €λ©΄, **docker/.env** νŒŒμΌμ—μ„œ `RAGFLOW_IMAGE`을 μ›ν•˜λŠ” λ²„μ „μœΌλ‘œ μ—…λ°μ΄νŠΈν•œ ν›„, 예λ₯Ό λ“€μ–΄ `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`둜 μ—…λ°μ΄νŠΈ ν•œ λ’€, λ‹€μŒ λͺ…λ Ήμ–΄λ₯Ό μ‹€ν–‰ν•˜μ„Έμš”.
142
  ```bash
143
  $ cd ragflow/docker
 
144
  $ docker compose up -d
145
  ```
146
 
README_zh.md CHANGED
@@ -137,7 +137,6 @@
137
 
138
  ```bash
139
  $ cd ragflow/docker
140
- $ chmod +x ./entrypoint.sh
141
  $ docker compose -f docker-compose.yml up -d
142
  ```
143
 
 
137
 
138
  ```bash
139
  $ cd ragflow/docker
 
140
  $ docker compose -f docker-compose.yml up -d
141
  ```
142
 
docker/entrypoint.sh CHANGED
File without changes
docs/guides/configure_knowledge_base.md CHANGED
@@ -58,7 +58,7 @@ You can also change the chunk template for a particular file on the **Datasets**
58
 
59
  ### Select embedding model
60
 
61
- An embedding model builds vector index on file chunks. Once you have chosen an embedding model and used it to parse a file, you are no longer allowed to change it. To switch to a different embedding model, you *must* deletes all completed file chunks in the knowledge base. The obvious reason is that we must *ensure* that all files in a specific knowledge base are parsed using the *same* embedding model (ensure that they are compared in the same embedding space).
62
 
63
  The following embedding models can be deployed locally:
64
 
 
58
 
59
  ### Select embedding model
60
 
61
+ An embedding model builds vector index on file chunks. Once you have chosen an embedding model and used it to parse a file, you are no longer allowed to change it. To switch to a different embedding model, you *must* delete all completed file chunks in the knowledge base. The obvious reason is that we must *ensure* that all files in a specific knowledge base are parsed using the *same* embedding model (ensure that they are compared in the same embedding space).
62
 
63
  The following embedding models can be deployed locally:
64
 
docs/quickstart.mdx CHANGED
@@ -181,11 +181,10 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
181
 
182
  ```bash
183
  $ cd ragflow/docker
184
- $ chmod +x ./entrypoint.sh
185
  $ docker compose up -d
186
  ```
187
 
188
- > The core image is about 9 GB in size and may take a while to load.
189
 
190
  4. Check the server status after having the server up and running:
191
 
 
181
 
182
  ```bash
183
  $ cd ragflow/docker
 
184
  $ docker compose up -d
185
  ```
186
 
187
+ > The core image is about 1 GB in size and may take a while to load.
188
 
189
  4. Check the server status after having the server up and running:
190
 
docs/references/faq.md CHANGED
@@ -75,7 +75,6 @@ $ git clone https://github.com/infiniflow/ragflow.git
75
  $ cd ragflow
76
  $ docker build -t infiniflow/ragflow:latest .
77
  $ cd ragflow/docker
78
- $ chmod +x ./entrypoint.sh
79
  $ docker compose up -d
80
  ```
81
 
 
75
  $ cd ragflow
76
  $ docker build -t infiniflow/ragflow:latest .
77
  $ cd ragflow/docker
 
78
  $ docker compose up -d
79
  ```
80