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 +0 -1
- README_ko.md +0 -1
- README_zh.md +0 -1
- docker/entrypoint.sh +0 -0
- docs/guides/configure_knowledge_base.md +1 -1
- docs/quickstart.mdx +1 -2
- docs/references/faq.md +0 -1
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*
|
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
|
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 |
|