* main: (64 commits) chore: Enable Japanese descriptions for Tools (#8646) Make WORKFLOW_* configurable as environment variables. (#8644) feat: add deepseek-v2.5 for model provider siliconflow (#8639) docs: fix predefined_model_scale_out.md redirect error (#8633) feat: add qwen2.5 for model provider siliconflow (#8630) fix: send message error when chatting with opening statement (#8627) fix: llm_generator.py JSONDecodeError (#8504) fix: commands.py (#8483) fix: redundant check for available_document_count (#8491) chore: enhance configuration descriptions (#8624) chore: add Gemini newest experimental models (close #7121) (#8621) feat: support o1 series models for openrouter (#8358) fix: form input add tabIndex (#8478) Add model parameter translation (#8509) feat(tools/cogview): Updated cogview tool to support cogview-3 and the latest cogview-3-plus (#8382) Add Fireworks AI as new model provider (#8428) feat:use xinference tts stream mode (#8616) docs: Add Japanese documentation for tools (#8469) feat: regenerate in `Chat`, `agent` and `Chatflow` app (#7661) feat: update pyproject.toml (#8368) ... |
2 years ago | |
|---|---|---|
| .. | ||
| .idea | 2 years ago | |
| .vscode | 2 years ago | |
| configs | 2 years ago | |
| constants | 2 years ago | |
| contexts | 2 years ago | |
| controllers | 2 years ago | |
| core | 2 years ago | |
| docker | 2 years ago | |
| events | 2 years ago | |
| extensions | 2 years ago | |
| fields | 2 years ago | |
| libs | 2 years ago | |
| migrations | 2 years ago | |
| models | 2 years ago | |
| schedule | 2 years ago | |
| services | 2 years ago | |
| tasks | 2 years ago | |
| templates | 2 years ago | |
| tests | 2 years ago | |
| .dockerignore | 2 years ago | |
| .env.example | 2 years ago | |
| Dockerfile | 2 years ago | |
| README.md | 2 years ago | |
| app.py | 2 years ago | |
| commands.py | 2 years ago | |
| poetry.lock | 2 years ago | |
| poetry.toml | 2 years ago | |
| pyproject.toml | 2 years ago | |
README.md
Dify Backend API
Usage
[!IMPORTANT] In the v0.6.12 release, we deprecated
pipas the package management tool for Dify API Backend service and replaced it withpoetry.
-
Start the docker-compose stack
The backend require some middleware, including PostgreSQL, Redis, and Weaviate, which can be started together using
docker-compose.cd ../docker cp middleware.env.example middleware.env # change the profile to other vector database if you are not using weaviate docker compose -f docker-compose.middleware.yaml --profile weaviate -p dify up -d cd ../api -
Copy
.env.exampleto.env -
Generate a
SECRET_KEYin the.envfile.sed -i "/^SECRET_KEY=/c\SECRET_KEY=$(openssl rand -base64 42)" .envsecret_key=$(openssl rand -base64 42) sed -i '' "/^SECRET_KEY=/c\\ SECRET_KEY=${secret_key}" .env -
Create environment.
Dify API service uses Poetry to manage dependencies. You can execute
poetry shellto activate the environment. -
Install dependencies
poetry env use 3.10 poetry installIn case of contributors missing to update dependencies for
pyproject.toml, you can perform the following shell instead.poetry shell # activate current environment poetry add $(cat requirements.txt) # install dependencies of production and update pyproject.toml poetry add $(cat requirements-dev.txt) --group dev # install dependencies of development and update pyproject.toml -
Run migrate
Before the first launch, migrate the database to the latest version.
poetry run python -m flask db upgrade -
Start backend
poetry run python -m flask run --host 0.0.0.0 --port=5001 --debug -
Start Dify web service.
-
Setup your application by visiting
http://localhost:3000... -
If you need to handle and debug the async tasks (e.g. dataset importing and documents indexing), please start the worker service.
poetry run python -m celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace,app_deletion
Testing
-
Install dependencies for both the backend and the test environment
poetry install --with dev -
Run the tests locally with mocked system environment variables in
tool.pytest_envsection inpyproject.tomlcd ../ poetry run -C api bash dev/pytest/pytest_all_tests.sh