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.

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