Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error commands #2778

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@

```bash
$ cd ragflow/docker
$ chmod +x ./entrypoint.sh
$ docker compose up -d
```

Expand Down
1 change: 0 additions & 1 deletion README_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@
> 다음 명령어를 실행하면 *dev* 버전의 RAGFlow Docker 이미지가 자동으로 다운로드됩니다. 특정 Docker 버전을 다운로드하고 실행하려면, **docker/.env** 파일에서 `RAGFLOW_IMAGE`을 원하는 버전으로 업데이트한 후, 예를 들어 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`로 업데이트 한 뒤, 다음 명령어를 실행하세요.
```bash
$ cd ragflow/docker
$ chmod +x ./entrypoint.sh
$ docker compose up -d
```

Expand Down
1 change: 0 additions & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@

```bash
$ cd ragflow/docker
$ chmod +x ./entrypoint.sh
$ docker compose -f docker-compose.yml up -d
```

Expand Down
Empty file modified docker/entrypoint.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion docs/guides/configure_knowledge_base.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ You can also change the chunk template for a particular file on the **Datasets**

### Select embedding model

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).
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).

The following embedding models can be deployed locally:

Expand Down
3 changes: 1 addition & 2 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,10 @@ This section provides instructions on setting up the RAGFlow server on Linux. If

```bash
$ cd ragflow/docker
$ chmod +x ./entrypoint.sh
$ docker compose up -d
```

> The core image is about 9 GB in size and may take a while to load.
> The core image is about 1 GB in size and may take a while to load.

4. Check the server status after having the server up and running:

Expand Down
1 change: 0 additions & 1 deletion docs/references/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ $ git clone https://github.com/infiniflow/ragflow.git
$ cd ragflow
$ docker build -t infiniflow/ragflow:latest .
$ cd ragflow/docker
$ chmod +x ./entrypoint.sh
$ docker compose up -d
```

Expand Down