v0.6.0-preview-workflow.1
Pre-release
Pre-release
Important Notice
This version is a preview release intended for feature workflow internal testing only. It is not a formal release. Please proceed with caution before upgrading.
TL;DR
- Introduced two new App types:
Chatflow
andWorkflow
. - The creation entry for the Chatbot Expert Mode has been removed, with support provided for migration to Chatflow apps.
- Chatbots can now be migrated to Chatflow apps, and Text Generation apps can be migrated to Workflow apps.
Update Guide
Deploying with Docker Compose:
-
Get the latest code from the
feat/workflow
branch:git fetch --tags git checkout 0.6.0-preview-workflow.1
-
Go to the next step and update to the latest image:
cd docker docker-compose up -d
Deploying from Source Code:
-
Stop API server, Worker and Web frontend Server.
-
Get the latest code from the
feat/workflow
branch:git fetch --tags git checkout 0.6.0-preview-workflow.1
-
Update Python dependencies:
cd api pip install -r requirements.txt
-
Then, let's run the migration script:
flask db upgrade
-
Finally, run API server, Worker and Web frontend Server again.