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 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ---
  2. sidebar_position: 2
  3. slug: /release_notes
  4. ---
  5. # Release notes
  6. Key features and improvements in the latest releases.
  7. ## v0.14.0
  8. Released on November 26, 2024.
  9. ### New features
  10. - 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)
  11. - Enhances user experience by adding more variables to the Agent and implementing auto-saving.
  12. - Adds a three-step translation agent template, inspired by [Andrew Ng's translation agent](https://github.com/andrewyng/translation-agent).
  13. - Adds an SEO-optimized blog writing agent template.
  14. - Provides HTTP and Python APIs for conversing with an agent.
  15. - Supports the use of English synonyms during retrieval processes.
  16. - Optimizes term weight calculations, reducing the retrieval time by 50%.
  17. - Improves task executor monitoring with additional performance indicators.
  18. - Replaces Redis with Valkey.
  19. - Adds three new UI languages (*contributed by the community*): Indonesian, Spanish, and Vietnamese.
  20. ### Compatibility changes
  21. As of this release, **service_config.yaml.template** replaces **service_config.yaml** for configuring backend services. Upon Docker container startup, the environment variables defined in this template file are automatically populated and a **service_config.yaml** is auto-generated from it. [#3341](https://github.com/infiniflow/ragflow/pull/3341)
  22. This approach eliminates the need to manually update **service_config.yaml** after making changes to **.env**, facilitating dynamic environment configurations.
  23. :::danger IMPORTANT
  24. 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.
  25. :::
  26. ### Related APIs
  27. #### HTTP APIs
  28. - [Create session with agent](https://ragflow.io/docs/dev/http_api_reference#create-session-with-agent)
  29. - [Converse with agent](https://ragflow.io/docs/dev/http_api_reference#converse-with-agent)
  30. #### Python APIs
  31. - [Create session with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  32. - [Converse with agent](https://ragflow.io/docs/dev/python_api_reference#create-session-with-agent)
  33. ### Documentation
  34. #### Added documents
  35. - [Configurations](https://ragflow.io/docs/dev/configurations)
  36. - [Manage team members](https://ragflow.io/docs/dev/manage_team_members)
  37. - [Run health check on RAGFlow's dependencies](https://ragflow.io/docs/dev/run_health_check)
  38. ## v0.13.0
  39. Released on October 31, 2024.
  40. ### New features
  41. - Adds the team management functionality for all users.
  42. - Updates the Agent UI to improve usability.
  43. - Adds support for Markdown chunking in the **General** chunk method.
  44. - Introduces an **invoke** tool within the Agent UI.
  45. - Integrates support for Dify's knowledge base API.
  46. - Adds support for GLM4-9B and Yi-Lightning models.
  47. - Introduces HTTP and Python APIs for dataset management, file management within dataset, and chat assistant management.
  48. :::tip NOTE
  49. To download RAGFlow's Python SDK:
  50. ```bash
  51. pip install ragflow-sdk==0.13.0
  52. ```
  53. :::
  54. ### Documentation
  55. #### Added documents
  56. - [Acquire a RAGFlow API key](https://ragflow.io/docs/dev/acquire_ragflow_api_key)
  57. - [HTTP API Reference](https://ragflow.io/docs/dev/http_api_reference)
  58. - [Python API Reference](https://ragflow.io/docs/dev/python_api_reference)
  59. ## v0.12.0
  60. Released on September 30, 2024.
  61. ### New features
  62. - Offers slim editions of RAGFlow's Docker images, which do not include built-in BGE/BCE embedding or reranking models.
  63. - Improves the results of multi-round dialogues.
  64. - Enables users to remove added LLM vendors.
  65. - Adds support for OpenTTS and SparkTTS models.
  66. - Implements an **Excel to HTML** toggle in the **General** chunk method, allowing users to parse an spreadsheet into either an HTML table or key-value pairs by row.
  67. - Adds agent tools **YahooFance** and **Jin10**.
  68. - Adds a template for an investment advisor agent.
  69. ### Compatibility changes
  70. As of this release, RAGFlow offers slim editions of its Docker images to improve the experience for users with limited Internet access. A slim edition of RAGFlow's Docker image does not include built-in BGE/BCE embedding models and has a size of about 1GB; a full edition of RAGFlow is approximately 9GB and includes both built-in embedding models and embedding models that will be downloaded once you select them in the RAGFlow UI.
  71. The default Docker image edition is `dev-slim`. The following list clarifies the differences between various editions:
  72. - `dev-slim`: The slim edition of the most recent tested Docker image.
  73. - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
  74. - `dev`: The full edition of the most recent tested Docker image.
  75. - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
  76. See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
  77. ### Documentation
  78. #### Added documents
  79. - [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow)