您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

release_notes.md 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. ---
  2. sidebar_position: 2
  3. slug: /release_notes
  4. ---
  5. # Release notes
  6. Key features, improvements and bug fixes in the latest releases.
  7. ## v0.16.0
  8. Released on February 6, 2025.
  9. ### New features
  10. - Supports DeepSeek R1 and DeepSeek V3.
  11. - GraphRAG refactor: Knowledge graph is dynamically built on an entire knowledge base (dataset) rather than on an individual file, and automatically updated when a newly uploaded file starts parsing. See [here](https://ragflow.io/docs/dev/construct_knowledge_graph).
  12. - Adds an **Iteration** agent component and a **Research report generator** agent template. See [here](https://ragflow.io/docs/dev/iteration_component).
  13. - New UI language: Portuguese.
  14. - Allows setting metadata for a specific file in a knowledge base to enhance AI-powered chats. See [here](https://ragflow.io/docs/dev/set_metada).
  15. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.6.0.dev3.
  16. - Supports GPU acceleration for DeepDoc (see [docker-compose-gpu.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose-gpu.yml)).
  17. - Supports creating and referencing a **Tag** knowledge base as a key milestone towards bridging the semantic gap between query and response.
  18. :::danger IMPORTANT
  19. The **Tag knowledge base** feature is *unavailable* on the [Infinity](https://github.com/infiniflow/infinity) document engine.
  20. :::
  21. ### Documentation
  22. #### Added documents
  23. - [Construct knowledge graph](https://ragflow.io/docs/dev/construct_knowledge_graph)
  24. - [Set metadata](https://ragflow.io/docs/dev/set_metada)
  25. - [Begin component](https://ragflow.io/docs/dev/begin_component)
  26. - [Generate component](https://ragflow.io/docs/dev/generate_component)
  27. - [Interact component](https://ragflow.io/docs/dev/interact_component)
  28. - [Retrieval component](https://ragflow.io/docs/dev/retrieval_component)
  29. - [Categorize component](https://ragflow.io/docs/dev/categorize_component)
  30. - [Keyword component](https://ragflow.io/docs/dev/keyword_component)
  31. - [Message component](https://ragflow.io/docs/dev/message_component)
  32. - [Rewrite component](https://ragflow.io/docs/dev/rewrite_component)
  33. - [Switch component](https://ragflow.io/docs/dev/switch_component)
  34. - [Concentrator component](https://ragflow.io/docs/dev/concentrator_component)
  35. - [Template component](https://ragflow.io/docs/dev/template_component)
  36. - [Iteration component](https://ragflow.io/docs/dev/iteration_component)
  37. - [Note component](https://ragflow.io/docs/dev/note_component)
  38. ## v0.15.1
  39. Released on December 25, 2024.
  40. ### Upgrades
  41. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.5.2.
  42. - Enhances the log display of document parsing status.
  43. ### Fixed issues
  44. This release fixes the following issues:
  45. - The `SCORE not found` and `position_int` errors returned by [Infinity](https://github.com/infiniflow/infinity).
  46. - Once an embedding model in a specific knowledge base is changed, embedding models in other knowledge bases can no longer be changed.
  47. - Slow response in question-answering and AI search due to repetitive loading of the embedding model.
  48. - Fails to parse documents with RAPTOR.
  49. - Using the **Table** parsing method results in information loss.
  50. - Miscellaneous API issues.
  51. ### Related APIs
  52. #### HTTP APIs
  53. Adds an optional parameter `"user_id"` to the following APIs:
  54. - [Create session with chat assistant](https://ragflow.io/docs/dev/http_api_reference#create-session-with-chat-assistant)
  55. - [Update chat assistant's session](https://ragflow.io/docs/dev/http_api_reference#update-chat-assistants-session)
  56. - [List chat assistant's sessions](https://ragflow.io/docs/dev/http_api_reference#list-chat-assistants-sessions)
  57. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  58. - [Converse with chat assistant](https://ragflow.io/docs/dev/http_api_reference#converse-with-chat-assistant)
  59. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  60. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  61. ## v0.15.0
  62. Released on December 18, 2024.
  63. ### New features
  64. - Introduces additional Agent-specific APIs.
  65. - Supports using page rank score to improve retrieval performance when searching across multiple knowledge bases.
  66. - Offers an iframe in Chat and Agent to facilitate the integration of RAGFlow into your webpage.
  67. - Adds a Helm chart for deploying RAGFlow on Kubernetes.
  68. - Supports importing or exporting an agent in JSON format.
  69. - Supports step run for Agent components/tools.
  70. - Adds a new UI language: Japanese.
  71. - Supports resuming GraphRAG and RAPTOR from a failure, enhancing task management resilience.
  72. - Adds more Mistral models.
  73. - Adds a dark mode to the UI, allowing users to toggle between light and dark themes.
  74. ### Improvements
  75. - Upgrades the Document Layout Analysis model in DeepDoc.
  76. - Significantly enhances the retrieval performance when using [Infinity](https://github.com/infiniflow/infinity) as document engine.
  77. ### Related APIs
  78. #### HTTP APIs
  79. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  80. - [List agents](https://ragflow.io/docs/dev/http_api_reference#list-agents)
  81. #### Python APIs
  82. - [List agent sessions](https://ragflow.io/docs/dev/python_api_reference#list-agent-sessions)
  83. - [List agents](https://ragflow.io/docs/dev/python_api_reference#list-agents)
  84. ## v0.14.1
  85. Released on November 29, 2024.
  86. ### Improvements
  87. Adds [Infinity's configuration file](https://github.com/infiniflow/ragflow/blob/main/docker/infinity_conf.toml) to facilitate integration and customization of [Infinity](https://github.com/infiniflow/infinity) as a document engine. From this release onwards, updates to Infinity's configuration can be made directly within RAGFlow and will take effect immediately after restarting RAGFlow using `docker compose`. [#3715](https://github.com/infiniflow/ragflow/pull/3715)
  88. ### Fixed issues
  89. This release fixes the following issues:
  90. - Unable to display or edit content of a chunk after clicking it.
  91. - A `'Not found'` error in Elasticsearch.
  92. - Chinese text becoming garbled during parsing.
  93. - A compatibility issue with Polars.
  94. - A compatibility issue between Infinity and GraphRAG.
  95. ## v0.14.0
  96. Released on November 26, 2024.
  97. ### New features
  98. - Supports [Infinity](https://github.com/infiniflow/infinity) or Elasticsearch (default) as document engine for vector storage and full-text indexing. [#2894](https://github.com/infiniflow/ragflow/pull/2894)
  99. - Enhances user experience by adding more variables to the Agent and implementing auto-saving.
  100. - Adds a three-step translation agent template, inspired by [Andrew Ng's translation agent](https://github.com/andrewyng/translation-agent).
  101. - Adds an SEO-optimized blog writing agent template.
  102. - Provides HTTP and Python APIs for conversing with an agent.
  103. - Supports the use of English synonyms during retrieval processes.
  104. - Optimizes term weight calculations, reducing the retrieval time by 50%.
  105. - Improves task executor monitoring with additional performance indicators.
  106. - Replaces Redis with Valkey.
  107. - Adds three new UI languages (*contributed by the community*): Indonesian, Spanish, and Vietnamese.
  108. ### Compatibility changes
  109. As of this release, **service_config.yaml.template** replaces **service_config.yaml** for configuring backend services. Upon Docker container startup, the environment variables defined in this template file are automatically populated and a **service_config.yaml** is auto-generated from it. [#3341](https://github.com/infiniflow/ragflow/pull/3341)
  110. This approach eliminates the need to manually update **service_config.yaml** after making changes to **.env**, facilitating dynamic environment configurations.
  111. :::danger IMPORTANT
  112. Ensure that you [upgrade **both** your code **and** Docker image to this release](https://ragflow.io/docs/dev/upgrade_ragflow#upgrade-ragflow-to-the-most-recent-officially-published-release) before trying this new approach.
  113. :::
  114. ### Related APIs
  115. #### HTTP APIs
  116. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  117. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  118. #### Python APIs
  119. - [Create session with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  120. - [Converse with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  121. ### Documentation
  122. #### Added documents
  123. - [Configurations](https://ragflow.io/docs/dev/configurations)
  124. - [Manage team members](https://ragflow.io/docs/dev/manage_team_members)
  125. - [Run health check on RAGFlow's dependencies](https://ragflow.io/docs/dev/run_health_check)
  126. ## v0.13.0
  127. Released on October 31, 2024.
  128. ### New features
  129. - Adds the team management functionality for all users.
  130. - Updates the Agent UI to improve usability.
  131. - Adds support for Markdown chunking in the **General** chunk method.
  132. - Introduces an **invoke** tool within the Agent UI.
  133. - Integrates support for Dify's knowledge base API.
  134. - Adds support for GLM4-9B and Yi-Lightning models.
  135. - Introduces HTTP and Python APIs for dataset management, file management within dataset, and chat assistant management.
  136. :::tip NOTE
  137. To download RAGFlow's Python SDK:
  138. ```bash
  139. pip install ragflow-sdk==0.13.0
  140. ```
  141. :::
  142. ### Documentation
  143. #### Added documents
  144. - [Acquire a RAGFlow API key](https://ragflow.io/docs/dev/acquire_ragflow_api_key)
  145. - [HTTP API Reference](https://ragflow.io/docs/dev/http_api_reference)
  146. - [Python API Reference](https://ragflow.io/docs/dev/python_api_reference)
  147. ## v0.12.0
  148. Released on September 30, 2024.
  149. ### New features
  150. - Offers slim editions of RAGFlow's Docker images, which do not include built-in BGE/BCE embedding or reranking models.
  151. - Improves the results of multi-round dialogues.
  152. - Enables users to remove added LLM vendors.
  153. - Adds support for **OpenTTS** and **SparkTTS** models.
  154. - Implements an **Excel to HTML** toggle in the **General** chunk method, allowing users to parse a spreadsheet into either HTML tables or key-value pairs by row.
  155. - Adds agent tools **YahooFinance** and **Jin10**.
  156. - Adds an investment advisor agent template.
  157. ### Compatibility changes
  158. As of this release, RAGFlow offers slim editions of its Docker images to improve the experience for users with limited Internet access. A slim edition of RAGFlow's Docker image does not include built-in BGE/BCE embedding models and has a size of about 1GB; a full edition of RAGFlow is approximately 9GB and includes both built-in embedding models and embedding models that will be downloaded once you select them in the RAGFlow UI.
  159. The default Docker image edition is `nightly-slim`. The following list clarifies the differences between various editions:
  160. - `nightly-slim`: The slim edition of the most recent tested Docker image.
  161. - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
  162. - `nightly`: The full edition of the most recent tested Docker image.
  163. - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
  164. See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
  165. ### Documentation
  166. #### Added documents
  167. - [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow)
  168. ## v0.11.0
  169. Released on September 14, 2024.
  170. ### New features
  171. - Introduces an AI search interface within the RAGFlow UI.
  172. - Supports audio output via **FishAudio** or **Tongyi Qwen TTS**.
  173. - Allows the use of Postgres for metadata storage, in addition to MySQL.
  174. - Supports object storage options with S3 or Azure Blob.
  175. - Supports model vendors: **Anthropic**, **Voyage AI**, and **Google Cloud**.
  176. - Supports the use of **Tencent Cloud ASR** for audio content recognition.
  177. - Adds finance-specific agent components: **WenCai**, **AkShare**, **YahooFinance**, and **TuShare**.
  178. - Adds a medical consultant agent template.
  179. - Supports running retrieval benchmarking on the following datasets:
  180. - [ms_marco_v1.1](https://huggingface.co/datasets/microsoft/ms_marco)
  181. - [trivia_qa](https://huggingface.co/datasets/mandarjoshi/trivia_qa)
  182. - [miracl](https://huggingface.co/datasets/miracl/miracl)
  183. ## v0.10.0
  184. Released on August 26, 2024.
  185. ### New features
  186. - Introduces a text-to-SQL template in the Agent UI.
  187. - Implements Agent APIs.
  188. - Incorporates monitoring for the task executor.
  189. - Introduces Agent tools **GitHub**, **DeepL**, **BaiduFanyi**, **QWeather**, and **GoogleScholar**.
  190. - Supports chunking of EML files.
  191. - Supports more LLMs or model services: **GPT-4o-mini**, **PerfXCloud**, **TogetherAI**, **Upstage**, **Novita.AI**, **01.AI**, **SiliconFlow**, **PPIO**, **XunFei Spark**, **Baidu Yiyan**, and **Tencent Hunyuan**.
  192. ## v0.9.0
  193. Released on August 6, 2024.
  194. ### New features
  195. - Supports GraphRAG as a chunk method.
  196. - Introduces Agent component **Keyword** and search tools, including **Baidu**, **DuckDuckGo**, **PubMed**, **Wikipedia**, **Bing**, and **Google**.
  197. - Supports speech-to-text recognition for audio files.
  198. - Supports model vendors **Gemini** and **Groq**.
  199. - Supports inference frameworks, engines, and services including **LM studio**, **OpenRouter**, **LocalAI**, and **Nvidia API**.
  200. - Supports using reranker models in Xinference.
  201. ## v0.8.0
  202. Released on July 8, 2024.
  203. ### New features
  204. - Supports Agentic RAG, enabling graph-based workflow construction for RAG and agents.
  205. - Supports model vendors **Mistral**, **MiniMax**, **Bedrock**, and **Azure OpenAI**.
  206. - Supports DOCX files in the MANUAL chunk method.
  207. - Supports DOCX, MD, and PDF files in the Q&A chunk method.
  208. ## v0.7.0
  209. Released on May 31, 2024.
  210. ### New features
  211. - Supports the use of reranker models.
  212. - Integrates reranker and embedding models: [BCE](https://github.com/netease-youdao/BCEmbedding), [BGE](https://github.com/FlagOpen/FlagEmbedding), and [Jina](https://jina.ai/embeddings/).
  213. - Supports LLMs Baichuan and VolcanoArk.
  214. - Implements [RAPTOR](https://arxiv.org/html/2401.18059v1) for improved text retrieval.
  215. - Supports HTML files in the GENERAL chunk method.
  216. - Provides HTTP and Python APIs for deleting documents by ID.
  217. - Supports ARM64 platforms.
  218. :::danger IMPORTANT
  219. While we also test RAGFlow on ARM64 platforms, we do not maintain RAGFlow Docker images for ARM.
  220. If you are on an ARM platform, follow [this guide](https://ragflow.io/docs/dev/build_docker_image) to build a RAGFlow Docker image.
  221. :::
  222. ### Related APIs
  223. #### HTTP API
  224. - [Delete documents](https://ragflow.io/docs/dev/http_api_reference#delete-documents)
  225. #### Python API
  226. - [Delete documents](https://ragflow.io/docs/dev/python_api_reference#delete-documents)
  227. ## v0.6.0
  228. Released on May 21, 2024.
  229. ### New features
  230. - Supports streaming output.
  231. - Provides HTTP and Python APIs for retrieving document chunks.
  232. - Supports monitoring of system components, including Elasticsearch, MySQL, Redis, and MinIO.
  233. - Supports disabling **Layout Recognition** in the GENERAL chunk method to reduce file chunking time.
  234. ### Related APIs
  235. #### HTTP API
  236. - [Retrieve chunks](https://ragflow.io/docs/dev/http_api_reference#retrieve-chunks)
  237. #### Python API
  238. - [Retrieve chunks](https://ragflow.io/docs/dev/python_api_reference#retrieve-chunks)
  239. ## v0.5.0
  240. Released on May 8, 2024.
  241. ### New features
  242. - Supports LLM DeepSeek.