Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

release_notes.md 24KB

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