You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. ---
  2. sidebar_position: 2
  3. slug: /release_notes
  4. ---
  5. # Releases
  6. Key features, improvements and bug fixes in the latest releases.
  7. ## v0.18.0
  8. Released on April 23, 2025.
  9. ### New features
  10. - MCP server: enables access to RAGFlow's knowledge bases via MCP.
  11. - DeepDoc supports adopting VLM model as a processing pipeline during document layout recognition, enabling in-depth analysis of images in PDFs.
  12. - Agent version control: all updates are continuously logged and can be rolled back to a previous version via export.
  13. - Team collaboration: Agents can be shared with team members.
  14. - OpenAI-compatible APIs: Agents can be called via OpenAI-compatible APIs.
  15. - User registration control: administrators can enable or disable user registration through an environment variable.
  16. ### Improvements
  17. - Enhanced answer referencing: Citation accuracy in generated responses is improved.
  18. - Enhanced question-answering experience: users can now manually stop streaming output during a conversation.
  19. ### Documentation
  20. #### Added documents
  21. - [Set page rank](./guides/dataset/set_page_rank.md)
  22. - [Enable RAPTOR](./guides/dataset/enable_raptor.md)
  23. - [RAGFlow MCP server overview](./develop/mcp.md)
  24. ## v0.17.2
  25. Released on March 13, 2025.
  26. ### Compatibility changes
  27. - Removes the **Max_tokens** setting from **Chat configuration**.
  28. - Removes the **Max_tokens** setting from **Generate**, **Rewrite**, **Categorize**, **Keyword** agent components.
  29. From this release onwards, if you still see RAGFlow's responses being cut short or truncated, check the **Max_tokens** setting of your model provider.
  30. ### Improvements
  31. - Adds OpenAI-compatible APIs.
  32. - Introduces a German user interface.
  33. - Accelerates knowledge graph extraction.
  34. - Enables Tavily-based web search in the **Retrieval** agent component.
  35. - Adds Tongyi-Qianwen QwQ models (OpenAI-compatible).
  36. - Supports CSV files in the **General** chunk method.
  37. ### Fixed issues
  38. - Unable to add models via Ollama/Xinference, an issue introduced in v0.17.1.
  39. ### Related APIs
  40. #### HTTP APIs
  41. - [Create chat completion](./references/http_api_reference.md#openai-compatible-api)
  42. #### Python APIs
  43. - [Create chat completion](./references/python_api_reference.md#openai-compatible-api)
  44. ## v0.17.1
  45. Released on March 11, 2025.
  46. ### Improvements
  47. - Improves English tokenization quality.
  48. - Improves the table extraction logic in Markdown document parsing.
  49. - Updates SiliconFlow's model list.
  50. - Supports parsing XLS files (Excel97~2003) with improved corresponding error handling.
  51. - Supports Huggingface rerank models.
  52. - Enables relative time expressions ("now", "yesterday", "last week", "next year", and more) in the **Rewrite** agent component.
  53. ### Fixed issues
  54. - A repetitive knowledge graph extraction issue.
  55. - Issues with API calling.
  56. - Options in the **PDF parser**, aka **Document parser**, dropdown are missing.
  57. - A Tavily web search issue.
  58. - Unable to preview diagrams or images in an AI chat.
  59. ### Documentation
  60. #### Added documents
  61. - [Use tag set](./guides/dataset/use_tag_sets.md)
  62. ## v0.17.0
  63. Released on March 3, 2025.
  64. ### New features
  65. - AI chat: Implements Deep Research for agentic reasoning. To activate this, enable the **Reasoning** toggle under the **Prompt engine** tab of your chat assistant dialogue.
  66. - AI chat: Leverages Tavily-based web search to enhance contexts in agentic reasoning. To activate this, enter the correct Tavily API key under the **Assistant settings** tab of your chat assistant dialogue.
  67. - AI chat: Supports starting a chat without specifying knowledge bases.
  68. - AI chat: HTML files can also be previewed and referenced, in addition to PDF files.
  69. - Dataset: Adds a **PDF parser**, aka **Document parser**, dropdown menu to dataset configurations. This includes a DeepDoc model option, which is time-consuming, a much faster **naive** option (plain text), which skips DLA (Document Layout Analysis), OCR (Optical Character Recognition), and TSR (Table Structure Recognition) tasks, and several currently *experimental* large model options.
  70. - Agent component: **(x)** or a forward slash `/` can be used to insert available keys (variables) in the system prompt field of the **Generate** or **Template** component.
  71. - Object storage: Supports using Aliyun OSS (Object Storage Service) as a file storage option.
  72. - Models: Updates the supported model list for Tongyi-Qianwen (Qwen), adding DeepSeek-specific models; adds ModelScope as a model provider.
  73. - APIs: Document metadata can be updated through an API.
  74. The following diagram illustrates the workflow of RAGFlow's Deep Research:
  75. ![Image](https://github.com/user-attachments/assets/f65d4759-4f09-4d9d-9549-c0e1fe907525)
  76. The following is a screenshot of a conversation that integrates Deep Research:
  77. ![Image](https://github.com/user-attachments/assets/165b88ff-1f5d-4fb8-90e2-c836b25e32e9)
  78. ### Related APIs
  79. #### HTTP APIs
  80. Adds a body parameter `"meta_fields"` to the [Update document](./references/http_api_reference.md#update-document) method.
  81. #### Python APIs
  82. Adds a key option `"meta_fields"` to the [Update document](./references/python_api_reference.md#update-document) method.
  83. ### Documentation
  84. #### Added documents
  85. - [Run retrieval test](./guides/dataset/run_retrieval_test.md)
  86. ## v0.16.0
  87. Released on February 6, 2025.
  88. ### New features
  89. - Supports DeepSeek R1 and DeepSeek V3.
  90. - 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).
  91. - Adds an **Iteration** agent component and a **Research report generator** agent template. See [here](./guides/agent/agent_component_reference/iteration.mdx).
  92. - New UI language: Portuguese.
  93. - Allows setting metadata for a specific file in a knowledge base to enhance AI-powered chats. See [here](./guides/dataset/set_metadata.md).
  94. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.6.0.dev3.
  95. - Supports GPU acceleration for DeepDoc (see [docker-compose-gpu.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose-gpu.yml)).
  96. - Supports creating and referencing a **Tag** knowledge base as a key milestone towards bridging the semantic gap between query and response.
  97. :::danger IMPORTANT
  98. The **Tag knowledge base** feature is *unavailable* on the [Infinity](https://github.com/infiniflow/infinity) document engine.
  99. :::
  100. ### Documentation
  101. #### Added documents
  102. - [Construct knowledge graph](./guides/dataset/construct_knowledge_graph.md)
  103. - [Set metadata](./guides/dataset/set_metadata.md)
  104. - [Begin component](./guides/agent/agent_component_reference/begin.mdx)
  105. - [Generate component](./guides/agent/agent_component_reference/generate.mdx)
  106. - [Interact component](./guides/agent/agent_component_reference/interact.mdx)
  107. - [Retrieval component](./guides/agent/agent_component_reference/retrieval.mdx)
  108. - [Categorize component](./guides/agent/agent_component_reference/categorize.mdx)
  109. - [Keyword component](./guides/agent/agent_component_reference/keyword.mdx)
  110. - [Message component](./guides/agent/agent_component_reference/message.mdx)
  111. - [Rewrite component](./guides/agent/agent_component_reference/rewrite.mdx)
  112. - [Switch component](./guides/agent/agent_component_reference/switch.mdx)
  113. - [Concentrator component](./guides/agent/agent_component_reference/concentrator.mdx)
  114. - [Template component](./guides/agent/agent_component_reference/template.mdx)
  115. - [Iteration component](./guides/agent/agent_component_reference/iteration.mdx)
  116. - [Note component](./guides/agent/agent_component_reference/note.mdx)
  117. ## v0.15.1
  118. Released on December 25, 2024.
  119. ### Upgrades
  120. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.5.2.
  121. - Enhances the log display of document parsing status.
  122. ### Fixed issues
  123. This release fixes the following issues:
  124. - The `SCORE not found` and `position_int` errors returned by [Infinity](https://github.com/infiniflow/infinity).
  125. - Once an embedding model in a specific knowledge base is changed, embedding models in other knowledge bases can no longer be changed.
  126. - Slow response in question-answering and AI search due to repetitive loading of the embedding model.
  127. - Fails to parse documents with RAPTOR.
  128. - Using the **Table** parsing method results in information loss.
  129. - Miscellaneous API issues.
  130. ### Related APIs
  131. #### HTTP APIs
  132. Adds an optional parameter `"user_id"` to the following APIs:
  133. - [Create session with chat assistant](https://ragflow.io/docs/dev/http_api_reference#create-session-with-chat-assistant)
  134. - [Update chat assistant's session](https://ragflow.io/docs/dev/http_api_reference#update-chat-assistants-session)
  135. - [List chat assistant's sessions](https://ragflow.io/docs/dev/http_api_reference#list-chat-assistants-sessions)
  136. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  137. - [Converse with chat assistant](https://ragflow.io/docs/dev/http_api_reference#converse-with-chat-assistant)
  138. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  139. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  140. ## v0.15.0
  141. Released on December 18, 2024.
  142. ### New features
  143. - Introduces additional Agent-specific APIs.
  144. - Supports using page rank score to improve retrieval performance when searching across multiple knowledge bases.
  145. - Offers an iframe in Chat and Agent to facilitate the integration of RAGFlow into your webpage.
  146. - Adds a Helm chart for deploying RAGFlow on Kubernetes.
  147. - Supports importing or exporting an agent in JSON format.
  148. - Supports step run for Agent components/tools.
  149. - Adds a new UI language: Japanese.
  150. - Supports resuming GraphRAG and RAPTOR from a failure, enhancing task management resilience.
  151. - Adds more Mistral models.
  152. - Adds a dark mode to the UI, allowing users to toggle between light and dark themes.
  153. ### Improvements
  154. - Upgrades the Document Layout Analysis model in DeepDoc.
  155. - Significantly enhances the retrieval performance when using [Infinity](https://github.com/infiniflow/infinity) as document engine.
  156. ### Related APIs
  157. #### HTTP APIs
  158. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  159. - [List agents](https://ragflow.io/docs/dev/http_api_reference#list-agents)
  160. #### Python APIs
  161. - [List agent sessions](https://ragflow.io/docs/dev/python_api_reference#list-agent-sessions)
  162. - [List agents](https://ragflow.io/docs/dev/python_api_reference#list-agents)
  163. ## v0.14.1
  164. Released on November 29, 2024.
  165. ### Improvements
  166. 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)
  167. ### Fixed issues
  168. This release fixes the following issues:
  169. - Unable to display or edit content of a chunk after clicking it.
  170. - A `'Not found'` error in Elasticsearch.
  171. - Chinese text becoming garbled during parsing.
  172. - A compatibility issue with Polars.
  173. - A compatibility issue between Infinity and GraphRAG.
  174. ## v0.14.0
  175. Released on November 26, 2024.
  176. ### New features
  177. - 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)
  178. - Enhances user experience by adding more variables to the Agent and implementing auto-saving.
  179. - Adds a three-step translation agent template, inspired by [Andrew Ng's translation agent](https://github.com/andrewyng/translation-agent).
  180. - Adds an SEO-optimized blog writing agent template.
  181. - Provides HTTP and Python APIs for conversing with an agent.
  182. - Supports the use of English synonyms during retrieval processes.
  183. - Optimizes term weight calculations, reducing the retrieval time by 50%.
  184. - Improves task executor monitoring with additional performance indicators.
  185. - Replaces Redis with Valkey.
  186. - Adds three new UI languages (*contributed by the community*): Indonesian, Spanish, and Vietnamese.
  187. ### Compatibility changes
  188. 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)
  189. This approach eliminates the need to manually update **service_config.yaml** after making changes to **.env**, facilitating dynamic environment configurations.
  190. :::danger IMPORTANT
  191. 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.
  192. :::
  193. ### Related APIs
  194. #### HTTP APIs
  195. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  196. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  197. #### Python APIs
  198. - [Create session with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  199. - [Converse with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  200. ### Documentation
  201. #### Added documents
  202. - [Configurations](https://ragflow.io/docs/dev/configurations)
  203. - [Manage team members](./guides/team/manage_team_members.md)
  204. - [Run health check on RAGFlow's dependencies](https://ragflow.io/docs/dev/run_health_check)
  205. ## v0.13.0
  206. Released on October 31, 2024.
  207. ### New features
  208. - Adds the team management functionality for all users.
  209. - Updates the Agent UI to improve usability.
  210. - Adds support for Markdown chunking in the **General** chunk method.
  211. - Introduces an **invoke** tool within the Agent UI.
  212. - Integrates support for Dify's knowledge base API.
  213. - Adds support for GLM4-9B and Yi-Lightning models.
  214. - Introduces HTTP and Python APIs for dataset management, file management within dataset, and chat assistant management.
  215. :::tip NOTE
  216. To download RAGFlow's Python SDK:
  217. ```bash
  218. pip install ragflow-sdk==0.13.0
  219. ```
  220. :::
  221. ### Documentation
  222. #### Added documents
  223. - [Acquire a RAGFlow API key](./develop/acquire_ragflow_api_key.md)
  224. - [HTTP API Reference](./references/http_api_reference.md)
  225. - [Python API Reference](./references/python_api_reference.md)
  226. ## v0.12.0
  227. Released on September 30, 2024.
  228. ### New features
  229. - Offers slim editions of RAGFlow's Docker images, which do not include built-in BGE/BCE embedding or reranking models.
  230. - Improves the results of multi-round dialogues.
  231. - Enables users to remove added LLM vendors.
  232. - Adds support for **OpenTTS** and **SparkTTS** models.
  233. - 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.
  234. - Adds agent tools **YahooFinance** and **Jin10**.
  235. - Adds an investment advisor agent template.
  236. ### Compatibility changes
  237. 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.
  238. The default Docker image edition is `nightly-slim`. The following list clarifies the differences between various editions:
  239. - `nightly-slim`: The slim edition of the most recent tested Docker image.
  240. - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
  241. - `nightly`: The full edition of the most recent tested Docker image.
  242. - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
  243. See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
  244. ### Documentation
  245. #### Added documents
  246. - [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow)
  247. ## v0.11.0
  248. Released on September 14, 2024.
  249. ### New features
  250. - Introduces an AI search interface within the RAGFlow UI.
  251. - Supports audio output via **FishAudio** or **Tongyi Qwen TTS**.
  252. - Allows the use of Postgres for metadata storage, in addition to MySQL.
  253. - Supports object storage options with S3 or Azure Blob.
  254. - Supports model vendors: **Anthropic**, **Voyage AI**, and **Google Cloud**.
  255. - Supports the use of **Tencent Cloud ASR** for audio content recognition.
  256. - Adds finance-specific agent components: **WenCai**, **AkShare**, **YahooFinance**, and **TuShare**.
  257. - Adds a medical consultant agent template.
  258. - Supports running retrieval benchmarking on the following datasets:
  259. - [ms_marco_v1.1](https://huggingface.co/datasets/microsoft/ms_marco)
  260. - [trivia_qa](https://huggingface.co/datasets/mandarjoshi/trivia_qa)
  261. - [miracl](https://huggingface.co/datasets/miracl/miracl)
  262. ## v0.10.0
  263. Released on August 26, 2024.
  264. ### New features
  265. - Introduces a text-to-SQL template in the Agent UI.
  266. - Implements Agent APIs.
  267. - Incorporates monitoring for the task executor.
  268. - Introduces Agent tools **GitHub**, **DeepL**, **BaiduFanyi**, **QWeather**, and **GoogleScholar**.
  269. - Supports chunking of EML files.
  270. - 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**.
  271. ## v0.9.0
  272. Released on August 6, 2024.
  273. ### New features
  274. - Supports GraphRAG as a chunk method.
  275. - Introduces Agent component **Keyword** and search tools, including **Baidu**, **DuckDuckGo**, **PubMed**, **Wikipedia**, **Bing**, and **Google**.
  276. - Supports speech-to-text recognition for audio files.
  277. - Supports model vendors **Gemini** and **Groq**.
  278. - Supports inference frameworks, engines, and services including **LM studio**, **OpenRouter**, **LocalAI**, and **Nvidia API**.
  279. - Supports using reranker models in Xinference.
  280. ## v0.8.0
  281. Released on July 8, 2024.
  282. ### New features
  283. - Supports Agentic RAG, enabling graph-based workflow construction for RAG and agents.
  284. - Supports model vendors **Mistral**, **MiniMax**, **Bedrock**, and **Azure OpenAI**.
  285. - Supports DOCX files in the MANUAL chunk method.
  286. - Supports DOCX, MD, and PDF files in the Q&A chunk method.
  287. ## v0.7.0
  288. Released on May 31, 2024.
  289. ### New features
  290. - Supports the use of reranker models.
  291. - Integrates reranker and embedding models: [BCE](https://github.com/netease-youdao/BCEmbedding), [BGE](https://github.com/FlagOpen/FlagEmbedding), and [Jina](https://jina.ai/embeddings/).
  292. - Supports LLMs Baichuan and VolcanoArk.
  293. - Implements [RAPTOR](https://arxiv.org/html/2401.18059v1) for improved text retrieval.
  294. - Supports HTML files in the GENERAL chunk method.
  295. - Provides HTTP and Python APIs for deleting documents by ID.
  296. - Supports ARM64 platforms.
  297. :::danger IMPORTANT
  298. While we also test RAGFlow on ARM64 platforms, we do not maintain RAGFlow Docker images for ARM.
  299. If you are on an ARM platform, follow [this guide](./develop/build_docker_image.mdx) to build a RAGFlow Docker image.
  300. :::
  301. ### Related APIs
  302. #### HTTP API
  303. - [Delete documents](https://ragflow.io/docs/dev/http_api_reference#delete-documents)
  304. #### Python API
  305. - [Delete documents](https://ragflow.io/docs/dev/python_api_reference#delete-documents)
  306. ## v0.6.0
  307. Released on May 21, 2024.
  308. ### New features
  309. - Supports streaming output.
  310. - Provides HTTP and Python APIs for retrieving document chunks.
  311. - Supports monitoring of system components, including Elasticsearch, MySQL, Redis, and MinIO.
  312. - Supports disabling **Layout Recognition** in the GENERAL chunk method to reduce file chunking time.
  313. ### Related APIs
  314. #### HTTP API
  315. - [Retrieve chunks](https://ragflow.io/docs/dev/http_api_reference#retrieve-chunks)
  316. #### Python API
  317. - [Retrieve chunks](https://ragflow.io/docs/dev/python_api_reference#retrieve-chunks)
  318. ## v0.5.0
  319. Released on May 8, 2024.
  320. ### New features
  321. - Supports LLM DeepSeek.