Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

release_notes.md 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. ---
  2. sidebar_position: 2
  3. slug: /release_notes
  4. ---
  5. # Releases
  6. Key features, improvements and bug fixes in the latest releases.
  7. :::info
  8. Each RAGFlow release is available in two editions:
  9. - **Slim edition**: excludes built-in embedding models and is identified by a **-slim** suffix added to the version name. Example: `infiniflow/ragflow:v0.19.1-slim`
  10. - **Full edition**: includes built-in embedding models and has no suffix added to the version name. Example: `infiniflow/ragflow:v0.19.1`
  11. :::
  12. :::danger IMPORTANT
  13. The embedding models included in a full edition are:
  14. - BAAI/bge-large-zh-v1.5
  15. - maidalun1020/bce-embedding-base_v1
  16. These two embedding models are optimized specifically for English and Chinese, so performance may be compromised if you use them to embed documents in other languages.
  17. :::
  18. ## v0.20.1
  19. Released on August 8, 2025.
  20. ### New Features
  21. - The **Retrieval** component now supports the dynamic specification of knowledge base names using variables.
  22. - The user interface now includes a French language option.
  23. ### Added Models
  24. - ChatGPT 5
  25. - Claude 4.1
  26. ### New agent Templates (both workflow and agentic)
  27. - SQL Assistant Workflow: Empowers non-technical teams (e.g., operations, product) to independently query business data.
  28. - Choose Your Knowledge Base Workflow: Lets users select a knowledge base to query during conversations. [#9325](https://github.com/infiniflow/ragflow/pull/9325)
  29. - Choose Your Knowledge Base Agent: Delivers higher-quality responses with extended reasoning time, suited for complex queries. [#9325](https://github.com/infiniflow/ragflow/pull/9325)
  30. ### Fixed Issues
  31. - The **Agent** component was unable to invoke models installed via vLLM.
  32. - Agents could not be shared with the team.
  33. - Embedding an Agent into a webpage was not functioning properly.
  34. ## v0.20.0
  35. Released on August 4, 2025.
  36. ### Compatibility changes
  37. From v0.20.0 onwards, Agents are no longer compatible with earlier versions, and all existing Agents from previous versions must be rebuilt following the upgrade.
  38. ### New features
  39. - Unified orchestration of both Agents and Workflows.
  40. - A comprehensive refactor of the Agent, greatly enhancing its capabilities and usability, with support for Multi-Agent configurations, planning and reflection, and visual functionalities.
  41. - Fully implemented MCP functionality, allowing for MCP Server import, Agents functioning as MCP Clients, and RAGFlow itself operating as an MCP Server.
  42. - Access to runtime logs for Agents.
  43. - Chat histories with Agents available through the management panel.
  44. - Integration of a new, more robust version of Infinity, enabling the auto-tagging functionality with Infinity as the underlying document engine.
  45. - An OpenAI-compatible API that supports file reference information.
  46. - Support for new models, including Kimi K2, Grok 4, and Voyage embedding.
  47. - RAGFlow’s codebase is now mirrored on Gitee.
  48. - Introduction of a new model provider, Gitee AI.
  49. ### New agent templates introduced
  50. - Multi-Agent based Deep Research: Collaborative Agent teamwork led by a Lead Agent with multiple Subagents, distinct from traditional workflow orchestration.
  51. - An intelligent Q&A chatbot leveraging internal knowledge bases, designed for customer service and training scenarios.
  52. - A resume analysis template used by the RAGFlow team to screen, analyze, and record candidate information.
  53. - A blog generation workflow that transforms raw ideas into SEO-friendly blog content.
  54. - An intelligent customer service workflow.
  55. - A user feedback analysis template that directs user feedback to appropriate teams through semantic analysis.
  56. - Trip Planner: Uses web search and map MCP servers to assist with travel planning.
  57. - Image Lingo: Translates content from uploaded photos.
  58. - An information search assistant that retrieves answers from both internal knowledge bases and the web.
  59. ## v0.19.1
  60. Released on June 23, 2025.
  61. ### Fixed issues
  62. - A memory leak issue during high-concurrency requests.
  63. - Large file parsing freezes when GraphRAG entity resolution is enabled. [#8223](https://github.com/infiniflow/ragflow/pull/8223)
  64. - A context error occurring when using Sandbox in standalone mode. [#8340](https://github.com/infiniflow/ragflow/pull/8340)
  65. - An excessive CPU usage issue caused by Ollama. [#8216](https://github.com/infiniflow/ragflow/pull/8216)
  66. - A bug in the Code Component. [#7949](https://github.com/infiniflow/ragflow/pull/7949)
  67. - Added support for models installed via Ollama or VLLM when creating a knowledge base through the API. [#8069](https://github.com/infiniflow/ragflow/pull/8069)
  68. - Enabled role-based authentication for S3 bucket access. [#8149](https://github.com/infiniflow/ragflow/pull/8149)
  69. ### Added models
  70. - Qwen 3 Embedding. [#8184](https://github.com/infiniflow/ragflow/pull/8184)
  71. - Voyage Multimodal 3. [#7987](https://github.com/infiniflow/ragflow/pull/7987)
  72. ## v0.19.0
  73. Released on May 26, 2025.
  74. ### New features
  75. - [Cross-language search](./references/glossary.mdx#cross-language-search) is supported in the Knowledge and Chat modules, enhancing search accuracy and user experience in multilingual environments, such as in Chinese-English knowledge bases.
  76. - Agent component: A new Code component supports Python and JavaScript scripts, enabling developers to handle more complex tasks like dynamic data processing.
  77. - Enhanced image display: Images in Chat and Search now render directly within responses, rather than as external references. Knowledge retrieval testing can retrieve images directly, instead of texts extracted from images.
  78. - Claude 4 and ChatGPT o3: Developers can now use the newly released, most advanced Claude model and OpenAI’s latest ChatGPT o3 inference model.
  79. > The following features have been contributed by our community:
  80. - Agent component: Enables tool calling within the Generate Component. Thanks to [notsyncing](https://github.com/notsyncing).
  81. - Markdown rendering: Image references in a markdown file can be displayed after chunking. Thanks to [Woody-Hu](https://github.com/Woody-Hu).
  82. - Document engine support: OpenSearch can now be used as RAGFlow's document engine. Thanks to [pyyuhao](https://github.com/pyyuhao).
  83. ### Documentation
  84. #### Added documents
  85. - [Select PDF parser](./guides/dataset/select_pdf_parser.md)
  86. - [Enable Excel2HTML](./guides/dataset/enable_excel2html.md)
  87. - [Code component](./guides/agent/agent_component_reference/code.mdx)
  88. ## v0.18.0
  89. Released on April 23, 2025.
  90. ### Compatibility changes
  91. From this release onwards, built-in rerank models have been removed because they have minimal impact on retrieval rates but significantly increase retrieval time.
  92. ### New features
  93. - MCP server: enables access to RAGFlow's knowledge bases via MCP.
  94. - DeepDoc supports adopting VLM model as a processing pipeline during document layout recognition, enabling in-depth analysis of images in PDF and DOCX files.
  95. - OpenAI-compatible APIs: Agents can be called via OpenAI-compatible APIs.
  96. - User registration control: administrators can enable or disable user registration through an environment variable.
  97. - Team collaboration: Agents can be shared with team members.
  98. - Agent version control: all updates are continuously logged and can be rolled back to a previous version via export.
  99. ![export_agent](https://raw.githubusercontent.com/infiniflow/ragflow-docs/main/images/export_agent_as_json.jpg)
  100. ### Improvements
  101. - Enhanced answer referencing: Citation accuracy in generated responses is improved.
  102. - Enhanced question-answering experience: users can now manually stop streaming output during a conversation.
  103. ### Documentation
  104. #### Added documents
  105. - [Set page rank](./guides/dataset/set_page_rank.md)
  106. - [Enable RAPTOR](./guides/dataset/enable_raptor.md)
  107. - [Set variables for your chat assistant](./guides/chat/set_chat_variables.md)
  108. - [Launch RAGFlow MCP server](./develop/mcp/launch_mcp_server.md)
  109. ## v0.17.2
  110. Released on March 13, 2025.
  111. ### Compatibility changes
  112. - Removes the **Max_tokens** setting from **Chat configuration**.
  113. - Removes the **Max_tokens** setting from **Generate**, **Rewrite**, **Categorize**, **Keyword** agent components.
  114. 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.
  115. ### Improvements
  116. - Adds OpenAI-compatible APIs.
  117. - Introduces a German user interface.
  118. - Accelerates knowledge graph extraction.
  119. - Enables Tavily-based web search in the **Retrieval** agent component.
  120. - Adds Tongyi-Qianwen QwQ models (OpenAI-compatible).
  121. - Supports CSV files in the **General** chunking method.
  122. ### Fixed issues
  123. - Unable to add models via Ollama/Xinference, an issue introduced in v0.17.1.
  124. ### Related APIs
  125. #### HTTP APIs
  126. - [Create chat completion](./references/http_api_reference.md#openai-compatible-api)
  127. #### Python APIs
  128. - [Create chat completion](./references/python_api_reference.md#openai-compatible-api)
  129. ## v0.17.1
  130. Released on March 11, 2025.
  131. ### Improvements
  132. - Improves English tokenization quality.
  133. - Improves the table extraction logic in Markdown document parsing.
  134. - Updates SiliconFlow's model list.
  135. - Supports parsing XLS files (Excel 97-2003) with improved corresponding error handling.
  136. - Supports Huggingface rerank models.
  137. - Enables relative time expressions ("now", "yesterday", "last week", "next year", and more) in chat assistant and the **Rewrite** agent component.
  138. ### Fixed issues
  139. - A repetitive knowledge graph extraction issue.
  140. - Issues with API calling.
  141. - Options in the **PDF parser**, aka **Document parser**, dropdown are missing.
  142. - A Tavily web search issue.
  143. - Unable to preview diagrams or images in an AI chat.
  144. ### Documentation
  145. #### Added documents
  146. - [Use tag set](./guides/dataset/use_tag_sets.md)
  147. ## v0.17.0
  148. Released on March 3, 2025.
  149. ### New features
  150. - 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.
  151. - 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.
  152. - AI chat: Supports starting a chat without specifying knowledge bases.
  153. - AI chat: HTML files can also be previewed and referenced, in addition to PDF files.
  154. - 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. See [here](./guides/dataset/select_pdf_parser.md).
  155. - 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.
  156. - Object storage: Supports using Aliyun OSS (Object Storage Service) as a file storage option.
  157. - Models: Updates the supported model list for Tongyi-Qianwen (Qwen), adding DeepSeek-specific models; adds ModelScope as a model provider.
  158. - APIs: Document metadata can be updated through an API.
  159. The following diagram illustrates the workflow of RAGFlow's Deep Research:
  160. ![Image](https://github.com/user-attachments/assets/f65d4759-4f09-4d9d-9549-c0e1fe907525)
  161. The following is a screenshot of a conversation that integrates Deep Research:
  162. ![Image](https://github.com/user-attachments/assets/165b88ff-1f5d-4fb8-90e2-c836b25e32e9)
  163. ### Related APIs
  164. #### HTTP APIs
  165. Adds a body parameter `"meta_fields"` to the [Update document](./references/http_api_reference.md#update-document) method.
  166. #### Python APIs
  167. Adds a key option `"meta_fields"` to the [Update document](./references/python_api_reference.md#update-document) method.
  168. ### Documentation
  169. #### Added documents
  170. - [Run retrieval test](./guides/dataset/run_retrieval_test.md)
  171. ## v0.16.0
  172. Released on February 6, 2025.
  173. ### New features
  174. - Supports DeepSeek R1 and DeepSeek V3.
  175. - 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).
  176. - Adds an **Iteration** agent component and a **Research report generator** agent template. See [here](./guides/agent/agent_component_reference/iteration.mdx).
  177. - New UI language: Portuguese.
  178. - Allows setting metadata for a specific file in a knowledge base to enhance AI-powered chats. See [here](./guides/dataset/set_metadata.md).
  179. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.6.0.dev3.
  180. - Supports GPU acceleration for DeepDoc (see [docker-compose-gpu.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose-gpu.yml)).
  181. - Supports creating and referencing a **Tag** knowledge base as a key milestone towards bridging the semantic gap between query and response.
  182. :::danger IMPORTANT
  183. The **Tag knowledge base** feature is *unavailable* on the [Infinity](https://github.com/infiniflow/infinity) document engine.
  184. :::
  185. ### Documentation
  186. #### Added documents
  187. - [Construct knowledge graph](./guides/dataset/construct_knowledge_graph.md)
  188. - [Set metadata](./guides/dataset/set_metadata.md)
  189. - [Begin component](./guides/agent/agent_component_reference/begin.mdx)
  190. - [Generate component](./guides/agent/agent_component_reference/generate.mdx)
  191. - [Interact component](./guides/agent/agent_component_reference/interact.mdx)
  192. - [Retrieval component](./guides/agent/agent_component_reference/retrieval.mdx)
  193. - [Categorize component](./guides/agent/agent_component_reference/categorize.mdx)
  194. - [Keyword component](./guides/agent/agent_component_reference/keyword.mdx)
  195. - [Message component](./guides/agent/agent_component_reference/message.mdx)
  196. - [Rewrite component](./guides/agent/agent_component_reference/rewrite.mdx)
  197. - [Switch component](./guides/agent/agent_component_reference/switch.mdx)
  198. - [Concentrator component](./guides/agent/agent_component_reference/concentrator.mdx)
  199. - [Template component](./guides/agent/agent_component_reference/template.mdx)
  200. - [Iteration component](./guides/agent/agent_component_reference/iteration.mdx)
  201. - [Note component](./guides/agent/agent_component_reference/note.mdx)
  202. ## v0.15.1
  203. Released on December 25, 2024.
  204. ### Upgrades
  205. - Upgrades RAGFlow's document engine [Infinity](https://github.com/infiniflow/infinity) to v0.5.2.
  206. - Enhances the log display of document parsing status.
  207. ### Fixed issues
  208. This release fixes the following issues:
  209. - The `SCORE not found` and `position_int` errors returned by [Infinity](https://github.com/infiniflow/infinity).
  210. - Once an embedding model in a specific knowledge base is changed, embedding models in other knowledge bases can no longer be changed.
  211. - Slow response in question-answering and AI search due to repetitive loading of the embedding model.
  212. - Fails to parse documents with RAPTOR.
  213. - Using the **Table** parsing method results in information loss.
  214. - Miscellaneous API issues.
  215. ### Related APIs
  216. #### HTTP APIs
  217. Adds an optional parameter `"user_id"` to the following APIs:
  218. - [Create session with chat assistant](https://ragflow.io/docs/dev/http_api_reference#create-session-with-chat-assistant)
  219. - [Update chat assistant's session](https://ragflow.io/docs/dev/http_api_reference#update-chat-assistants-session)
  220. - [List chat assistant's sessions](https://ragflow.io/docs/dev/http_api_reference#list-chat-assistants-sessions)
  221. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  222. - [Converse with chat assistant](https://ragflow.io/docs/dev/http_api_reference#converse-with-chat-assistant)
  223. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  224. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  225. ## v0.15.0
  226. Released on December 18, 2024.
  227. ### New features
  228. - Introduces additional Agent-specific APIs.
  229. - Supports using page rank score to improve retrieval performance when searching across multiple knowledge bases.
  230. - Offers an iframe in Chat and Agent to facilitate the integration of RAGFlow into your webpage.
  231. - Adds a Helm chart for deploying RAGFlow on Kubernetes.
  232. - Supports importing or exporting an agent in JSON format.
  233. - Supports step run for Agent components/tools.
  234. - Adds a new UI language: Japanese.
  235. - Supports resuming GraphRAG and RAPTOR from a failure, enhancing task management resilience.
  236. - Adds more Mistral models.
  237. - Adds a dark mode to the UI, allowing users to toggle between light and dark themes.
  238. ### Improvements
  239. - Upgrades the Document Layout Analysis model in DeepDoc.
  240. - Significantly enhances the retrieval performance when using [Infinity](https://github.com/infiniflow/infinity) as document engine.
  241. ### Related APIs
  242. #### HTTP APIs
  243. - [List agent sessions](https://ragflow.io/docs/dev/http_api_reference#list-agent-sessions)
  244. - [List agents](https://ragflow.io/docs/dev/http_api_reference#list-agents)
  245. #### Python APIs
  246. - [List agent sessions](https://ragflow.io/docs/dev/python_api_reference#list-agent-sessions)
  247. - [List agents](https://ragflow.io/docs/dev/python_api_reference#list-agents)
  248. ## v0.14.1
  249. Released on November 29, 2024.
  250. ### Improvements
  251. 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)
  252. ### Fixed issues
  253. This release fixes the following issues:
  254. - Unable to display or edit content of a chunk after clicking it.
  255. - A `'Not found'` error in Elasticsearch.
  256. - Chinese text becoming garbled during parsing.
  257. - A compatibility issue with Polars.
  258. - A compatibility issue between Infinity and GraphRAG.
  259. ## v0.14.0
  260. Released on November 26, 2024.
  261. ### New features
  262. - 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)
  263. - Enhances user experience by adding more variables to the Agent and implementing auto-saving.
  264. - Adds a three-step translation agent template, inspired by [Andrew Ng's translation agent](https://github.com/andrewyng/translation-agent).
  265. - Adds an SEO-optimized blog writing agent template.
  266. - Provides HTTP and Python APIs for conversing with an agent.
  267. - Supports the use of English synonyms during retrieval processes.
  268. - Optimizes term weight calculations, reducing the retrieval time by 50%.
  269. - Improves task executor monitoring with additional performance indicators.
  270. - Replaces Redis with Valkey.
  271. - Adds three new UI languages (*contributed by the community*): Indonesian, Spanish, and Vietnamese.
  272. ### Compatibility changes
  273. From this release onwards, **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)
  274. This approach eliminates the need to manually update **service_config.yaml** after making changes to **.env**, facilitating dynamic environment configurations.
  275. :::danger IMPORTANT
  276. 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.
  277. :::
  278. ### Related APIs
  279. #### HTTP APIs
  280. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  281. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  282. #### Python APIs
  283. - [Create session with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  284. - [Converse with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  285. ### Documentation
  286. #### Added documents
  287. - [Configurations](https://ragflow.io/docs/dev/configurations)
  288. - [Manage team members](./guides/team/manage_team_members.md)
  289. - [Run health check on RAGFlow's dependencies](https://ragflow.io/docs/dev/run_health_check)
  290. ## v0.13.0
  291. Released on October 31, 2024.
  292. ### New features
  293. - Adds the team management functionality for all users.
  294. - Updates the Agent UI to improve usability.
  295. - Adds support for Markdown chunking in the **General** chunking method.
  296. - Introduces an **invoke** tool within the Agent UI.
  297. - Integrates support for Dify's knowledge base API.
  298. - Adds support for GLM4-9B and Yi-Lightning models.
  299. - Introduces HTTP and Python APIs for dataset management, file management within dataset, and chat assistant management.
  300. :::tip NOTE
  301. To download RAGFlow's Python SDK:
  302. ```bash
  303. pip install ragflow-sdk==0.13.0
  304. ```
  305. :::
  306. ### Documentation
  307. #### Added documents
  308. - [Acquire a RAGFlow API key](./develop/acquire_ragflow_api_key.md)
  309. - [HTTP API Reference](./references/http_api_reference.md)
  310. - [Python API Reference](./references/python_api_reference.md)
  311. ## v0.12.0
  312. Released on September 30, 2024.
  313. ### New features
  314. - Offers slim editions of RAGFlow's Docker images, which do not include built-in BGE/BCE embedding or reranking models.
  315. - Improves the results of multi-round dialogues.
  316. - Enables users to remove added LLM vendors.
  317. - Adds support for **OpenTTS** and **SparkTTS** models.
  318. - Implements an **Excel to HTML** toggle in the **General** chunking method, allowing users to parse a spreadsheet into either HTML tables or key-value pairs by row.
  319. - Adds agent tools **YahooFinance** and **Jin10**.
  320. - Adds an investment advisor agent template.
  321. ### Compatibility changes
  322. From this release onwards, 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.
  323. The default Docker image edition is `nightly-slim`. The following list clarifies the differences between various editions:
  324. - `nightly-slim`: The slim edition of the most recent tested Docker image.
  325. - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
  326. - `nightly`: The full edition of the most recent tested Docker image.
  327. - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
  328. See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
  329. ### Documentation
  330. #### Added documents
  331. - [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow)
  332. ## v0.11.0
  333. Released on September 14, 2024.
  334. ### New features
  335. - Introduces an AI search interface within the RAGFlow UI.
  336. - Supports audio output via **FishAudio** or **Tongyi Qwen TTS**.
  337. - Allows the use of Postgres for metadata storage, in addition to MySQL.
  338. - Supports object storage options with S3 or Azure Blob.
  339. - Supports model vendors: **Anthropic**, **Voyage AI**, and **Google Cloud**.
  340. - Supports the use of **Tencent Cloud ASR** for audio content recognition.
  341. - Adds finance-specific agent components: **WenCai**, **AkShare**, **YahooFinance**, and **TuShare**.
  342. - Adds a medical consultant agent template.
  343. - Supports running retrieval benchmarking on the following datasets:
  344. - [ms_marco_v1.1](https://huggingface.co/datasets/microsoft/ms_marco)
  345. - [trivia_qa](https://huggingface.co/datasets/mandarjoshi/trivia_qa)
  346. - [miracl](https://huggingface.co/datasets/miracl/miracl)
  347. ## v0.10.0
  348. Released on August 26, 2024.
  349. ### New features
  350. - Introduces a text-to-SQL template in the Agent UI.
  351. - Implements Agent APIs.
  352. - Incorporates monitoring for the task executor.
  353. - Introduces Agent tools **GitHub**, **DeepL**, **BaiduFanyi**, **QWeather**, and **GoogleScholar**.
  354. - Supports chunking of EML files.
  355. - 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**.
  356. ## v0.9.0
  357. Released on August 6, 2024.
  358. ### New features
  359. - Supports GraphRAG as a chunking method.
  360. - Introduces Agent component **Keyword** and search tools, including **Baidu**, **DuckDuckGo**, **PubMed**, **Wikipedia**, **Bing**, and **Google**.
  361. - Supports speech-to-text recognition for audio files.
  362. - Supports model vendors **Gemini** and **Groq**.
  363. - Supports inference frameworks, engines, and services including **LM studio**, **OpenRouter**, **LocalAI**, and **Nvidia API**.
  364. - Supports using reranker models in Xinference.
  365. ## v0.8.0
  366. Released on July 8, 2024.
  367. ### New features
  368. - Supports Agentic RAG, enabling graph-based workflow construction for RAG and agents.
  369. - Supports model vendors **Mistral**, **MiniMax**, **Bedrock**, and **Azure OpenAI**.
  370. - Supports DOCX files in the MANUAL chunking method.
  371. - Supports DOCX, MD, and PDF files in the Q&A chunking method.
  372. ## v0.7.0
  373. Released on May 31, 2024.
  374. ### New features
  375. - Supports the use of reranker models.
  376. - Integrates reranker and embedding models: [BCE](https://github.com/netease-youdao/BCEmbedding), [BGE](https://github.com/FlagOpen/FlagEmbedding), and [Jina](https://jina.ai/embeddings/).
  377. - Supports LLMs Baichuan and VolcanoArk.
  378. - Implements [RAPTOR](https://arxiv.org/html/2401.18059v1) for improved text retrieval.
  379. - Supports HTML files in the GENERAL chunking method.
  380. - Provides HTTP and Python APIs for deleting documents by ID.
  381. - Supports ARM64 platforms.
  382. :::danger IMPORTANT
  383. While we also test RAGFlow on ARM64 platforms, we do not maintain RAGFlow Docker images for ARM.
  384. If you are on an ARM platform, follow [this guide](./develop/build_docker_image.mdx) to build a RAGFlow Docker image.
  385. :::
  386. ### Related APIs
  387. #### HTTP API
  388. - [Delete documents](https://ragflow.io/docs/dev/http_api_reference#delete-documents)
  389. #### Python API
  390. - [Delete documents](https://ragflow.io/docs/dev/python_api_reference#delete-documents)
  391. ## v0.6.0
  392. Released on May 21, 2024.
  393. ### New features
  394. - Supports streaming output.
  395. - Provides HTTP and Python APIs for retrieving document chunks.
  396. - Supports monitoring of system components, including Elasticsearch, MySQL, Redis, and MinIO.
  397. - Supports disabling **Layout Recognition** in the GENERAL chunking method to reduce file chunking time.
  398. ### Related APIs
  399. #### HTTP API
  400. - [Retrieve chunks](https://ragflow.io/docs/dev/http_api_reference#retrieve-chunks)
  401. #### Python API
  402. - [Retrieve chunks](https://ragflow.io/docs/dev/python_api_reference#retrieve-chunks)
  403. ## v0.5.0
  404. Released on May 8, 2024.
  405. ### New features
  406. - Supports LLM DeepSeek.