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.

release_notes.md 28KB

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