diff --git a/README.md b/README.md index c1ea606eb1..1de7b18437 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ Static Badge - docker pull infiniflow/ragflow:v0.5.0 + docker pull infiniflow/ragflow:v0.6.0 license @@ -30,6 +30,7 @@ ## 📌 Latest Updates +- 2024-05-21 Supports streaming output and text chunk retrieval API. - 2024-05-15 Integrates OpenAI GPT-4o. - 2024-05-08 Integrates LLM DeepSeek-V2. - 2024-04-26 Adds file management. @@ -115,7 +116,7 @@ 3. Build the pre-built Docker images and start up the server: - > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.5.0`, before running the following commands. + > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.6.0`, before running the following commands. ```bash $ cd ragflow/docker diff --git a/README_ja.md b/README_ja.md index a18b5b0179..5b97820f81 100644 --- a/README_ja.md +++ b/README_ja.md @@ -17,8 +17,8 @@ Static Badge - docker pull infiniflow/ragflow:v0.5.0 + docker pull infiniflow/ragflow:v0.6.0 license @@ -30,6 +30,7 @@ ## 📌 最新情報 +- 2024-05-21 ストリーミング出力とテキストチャンク取得APIをサポート。 - 2024-05-15 OpenAI GPT-4oを統合しました。 - 2024-05-08 LLM DeepSeek-V2を統合しました。 - 2024-04-26 「ファイル管理」機能を追加しました。 @@ -123,7 +124,7 @@ $ docker compose up -d ``` - > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_VERSION変数を見つけて、対応するバージョンに変更してください。 例えば、RAGFLOW_VERSION=v0.5.0として、上記のコマンドを実行してください。 + > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_VERSION変数を見つけて、対応するバージョンに変更してください。 例えば、RAGFLOW_VERSION=v0.6.0として、上記のコマンドを実行してください。 > コアイメージのサイズは約 9 GB で、ロードに時間がかかる場合があります。 @@ -185,7 +186,7 @@ ```bash $ git clone https://github.com/infiniflow/ragflow.git $ cd ragflow/ -$ docker build -t infiniflow/ragflow:v0.5.0 . +$ docker build -t infiniflow/ragflow:v0.6.0 . $ cd ragflow/docker $ chmod +x ./entrypoint.sh $ docker compose up -d diff --git a/README_zh.md b/README_zh.md index 5f2f4b7f26..e4a2f329e9 100644 --- a/README_zh.md +++ b/README_zh.md @@ -17,8 +17,8 @@ Static Badge - docker pull infiniflow/ragflow:v0.5.0 + docker pull infiniflow/ragflow:v0.6.0 license @@ -30,6 +30,7 @@ ## 📌 近期更新 +- 2024-05-21 支持流式结果输出和文本块获取API。 - 2024-05-15 集成大模型 OpenAI GPT-4o。 - 2024-05-08 集成大模型 DeepSeek。 - 2024-04-26 增添了'文件管理'功能。 @@ -121,7 +122,7 @@ $ docker compose -f docker-compose-CN.yml up -d ``` - > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_VERSION 变量,将其改为对应版本。例如 RAGFLOW_VERSION=v0.5.0,然后运行上述命令。 + > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_VERSION 变量,将其改为对应版本。例如 RAGFLOW_VERSION=v0.6.0,然后运行上述命令。 > 核心镜像文件大约 9 GB,可能需要一定时间拉取。请耐心等待。 @@ -183,7 +184,7 @@ ```bash $ git clone https://github.com/infiniflow/ragflow.git $ cd ragflow/ -$ docker build -t infiniflow/ragflow:v0.5.0 . +$ docker build -t infiniflow/ragflow:v0.6.0 . $ cd ragflow/docker $ chmod +x ./entrypoint.sh $ docker compose up -d diff --git a/docker/.env b/docker/.env index b15409fd37..6186ecb284 100644 --- a/docker/.env +++ b/docker/.env @@ -29,7 +29,7 @@ REDIS_PASSWORD=infini_rag_flow SVR_HTTP_PORT=9380 -RAGFLOW_VERSION=dev +RAGFLOW_VERSION=0.6.0 TIMEZONE='Asia/Shanghai' diff --git a/docs/quickstart.md b/docs/quickstart.md index 2ef566c0df..6be54d36a5 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -49,7 +49,7 @@ This quick start guide describes a general process from: 3. Build the pre-built Docker images and start up the server: - > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.5.0`, before running the following commands. + > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.6.0`, before running the following commands. ```bash $ cd ragflow/docker