|
58 | 58 |
|
59 | 59 | ## 📌 Latest Features
|
60 | 60 |
|
61 |
| -- 2024-04-26 Add file management. |
62 |
| -- 2024-04-19 Support conversation API ([detail](./docs/conversation_api.md)). |
63 |
| -- 2024-04-16 Add an embedding model 'bce-embedding-base_v1' from [BCEmbedding](https://github.com/netease-youdao/BCEmbedding). |
64 |
| -- 2024-04-16 Add [FastEmbed](https://github.com/qdrant/fastembed), which is designed specifically for light and speedy embedding. |
65 |
| -- 2024-04-11 Support [Xinference](./docs/xinference.md) for local LLM deployment. |
66 |
| -- 2024-04-10 Add a new layout recognization model for analyzing Laws documentation. |
67 |
| -- 2024-04-08 Support [Ollama](./docs/ollama.md) for local LLM deployment. |
68 |
| -- 2024-04-07 Support Chinese UI. |
| 61 | +- 2024-05-08 Integrates LLM DeepSeek. |
| 62 | +- 2024-04-26 Adds file management. |
| 63 | +- 2024-04-19 Supports conversation API ([detail](./docs/conversation_api.md)). |
| 64 | +- 2024-04-16 Integrates an embedding model 'bce-embedding-base_v1' from [BCEmbedding](https://github.com/netease-youdao/BCEmbedding), and [FastEmbed](https://github.com/qdrant/fastembed), which is designed specifically for light and speedy embedding. |
| 65 | +- 2024-04-11 Supports [Xinference](./docs/xinference.md) for local LLM deployment. |
| 66 | +- 2024-04-10 Adds a new layout recognition model for analyzing Laws documentation. |
| 67 | +- 2024-04-08 Supports [Ollama](./docs/ollama.md) for local LLM deployment. |
| 68 | +- 2024-04-07 Supports Chinese UI. |
69 | 69 |
|
70 | 70 | ## 🔎 System Architecture
|
71 | 71 |
|
|
119 | 119 | $ chmod +x ./entrypoint.sh
|
120 | 120 | $ docker compose up -d
|
121 | 121 | ```
|
| 122 | + > Please note that running the above commands will automatically download the development version docker image of RAGFlow. If you want to download and run a specific version of docker image, please find the RAGFLOW_VERSION variable in the docker/.env file, change it to the corresponding version, for example, RAGFLOW_VERSION=v0.5.0, and run the above commands. |
122 | 123 |
|
123 | 124 | > The core image is about 9 GB in size and may take a while to load.
|
124 | 125 |
|
@@ -180,7 +181,7 @@ To build the Docker images from source:
|
180 | 181 | ```bash
|
181 | 182 | $ git clone https://github.com/infiniflow/ragflow.git
|
182 | 183 | $ cd ragflow/
|
183 |
| -$ docker build -t infiniflow/ragflow:v0.5.0 . |
| 184 | +$ docker build -t infiniflow/ragflow:dev . |
184 | 185 | $ cd ragflow/docker
|
185 | 186 | $ chmod +x ./entrypoint.sh
|
186 | 187 | $ docker compose up -d
|
|
0 commit comments