MyGit

0.9.0

langgenius/dify

版本发布时间: 2024-09-30 18:35:35

langgenius/dify最新发布版本:0.10.0-beta2(2024-10-01 14:07:03)

✨ What’s New in v0.9.0? ✨

Get ready for a feature-packed update! Version 0.9.0 brings major enhancements, new integrations, and crucial fixes. Let’s dive into the details:

🚀 New Features

🔄 Retrieval-Augmented Generation (RAG)

External Knowledge API: Now you can connect to third-party knowledge bases seamlessly (introduced by @JohnJyong in #8913).

img_v3_02f7_b73507d9-c144-4a1d-acf4-caccec69b99g

Website Crawling: Now supports Jina Reader as additional alternative for website crawling, converting web page URL to LLM-friendly input format. Read Sync Data from Website for details. (@mapleeit in #8761).

🧠 Models

🛠️ Other Updates

⚙️ Enhancements

🛠️ Bug Fixes

📚 Documentation & Misc

With this release, we’re truly showcasing the power of Dify! We appreciate your continued support—explore the new features and share your feedback with us!


Upgrade Guide

Docker compose deployments

[!WARNING] The docker-compose.yaml has been refactored. If you've made any changes to the file, make sure to check out the "Upgrade to new docker compose deployment" section above for usage and migration tips.

  1. Back up your customized docker-compose YAML file (optional)

    cd docker
    cp docker-compose.yaml docker-compose.yaml.$(date +%s).bak
    
  2. Get the latest code from the main branch

    git checkout main
    git pull origin main
    
  3. Stop the service,Command, please execute in the docker directory

    docker compose down
    
  4. Back up data

    tar -cvf volumes-$(date +%s).tgz volumes
    
  5. Upgrade services

    docker compose up -d
    

Source Code deployments

  1. Stop API server, Worker and Web frontend Server.

  2. Get the latest code from the main branch:

    git checkout 0.9.0
    git pull origin 0.9.0
    
  3. Update Python dependencies:

    cd api
    poetry install
    
  4. Then, let's run the migration script:

    poetry shell
    flask db upgrade
    
  5. Finally, run API server, Worker and Web frontend Server again.


What's Changed

New Contributors

Full Changelog: https://github.com/langgenius/dify/compare/0.8.3...0.9.0

相关地址:原始地址 下载(tar) 下载(zip)

查看:2024-09-30发行的版本