Skip to content

Releases: langgenius/dify

v0.3.30

13 Nov 15:20
8835435
Compare
Choose a tag to compare

New Features

  • App supports image uploading and calls the OpenAI GPT-4V or gpt-4-vision-preview which allows the model to take in images and answer questions about them.

What's Changed

Full Changelog: 0.3.29...0.3.30

v0.3.29

06 Nov 13:02
5d48406
Compare
Choose a tag to compare

New Features

  • App Moderation Support [DOCS WIP]
  • App External Data Retrieve Support [DOCS WIP]
  • the above functions support API-based / Code-based Extension [DOCS WIP]
  • Support ZhipuAI chatglm_turbo, spark v3.0, weixin ernie-bot-4 model

What's Changed

New Contributors

Full Changelog: 0.3.28...0.3.29

v0.3.28

14 Oct 16:50
2feb16d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.3.27...0.3.28

v0.3.27

12 Oct 15:45
7dea485
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.26...0.3.27

v0.3.26

11 Oct 08:12
cc63c84
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.25...0.3.26

v0.3.25

10 Oct 05:15
8bf892b
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.24...0.3.25

v0.3.24

28 Sep 10:41
5bffa1d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.23...0.3.24

Version 0.3.23

19 Sep 16:21
5809edd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.3.22...0.3.23

Version 0.3.22

11 Sep 04:08
24cb992
Compare
Choose a tag to compare

Notice: if you're upgrading from before version 0.3.21, make sure you've read the BREAKING CHANGE in version 0.3.21: https://github.com/langgenius/dify/releases/tag/0.3.21

What's Changed

Full Changelog: 0.3.21...0.3.22

Version 0.3.21

10 Sep 04:35
f29e826
Compare
Choose a tag to compare

⚠️ [BREAKING CHANGE] ⚠️

  • The fixed parameters of the Query content in the text generation application have been removed. Users can freely add any variables in the prompt, instead of appending the content of the query content at the end.
  • The query parameter in the POST /v1/completion-messages endpoint of the App OpenAPI is expected to be completely removed in 3 months. Currently, it's optional and the parameter in API documentation has already been removed.

To ensure that the previous applications can still function properly after removing the fixed parameters in the query content of the text generation application, we need to execute a command to fix the data:

Migration Guide

  1. Enter the Docker Container: Before running the migration script, you need to enter the Docker container where your application is running. Use the following command:

    docker exec -it docker-api-1 bash
  2. Run the Migration Script: Once inside the container, execute the following migration command. The migration script can be executed multiple times without side effects:

    # --batch-size: Specifies the number of records migrated per batch, default is 500
    flask update_app_model_configs --batch-size=500

What's Changed

Full Changelog: 0.3.20...0.3.21