forked from langgenius/dify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '12c815c597b121357151c798aae6580304416937'
* commit '12c815c597b121357151c798aae6580304416937': (97 commits) fix: ExtractSetting optional value missing None as default val (langgenius#5238) version to 0.6.11 (langgenius#5224) Feat/firecrawl data source (langgenius#5232) update tooltip (langgenius#5235) fix: note editor italic (langgenius#5230) fix: z-index (langgenius#5229) Update README.md (langgenius#5228) fix: allow the name and icon of the web app to be set independently of that of the bot itself (langgenius#5225) fix: initialize site with customized icon and icon_background (langgenius#5227) feat: support firecrawl frontend code (langgenius#5226) feat(Tools): Add Feishu multi-dimensional table operation function (langgenius#5213) chore: development script for syncing Poetry lockfile (langgenius#5170) fix: workspace member's last_active should be last_active_time, but not last_login_time (langgenius#4906) fix: number variable cause type error in openai moderation (langgenius#5222) feat: new editor user permission profile (langgenius#4435) Fix: http_request delete method not working (langgenius#4975) Update README, deploy dify with YAML file on Kubernetes (langgenius#5131) feat: support tencent vector db (langgenius#3568) fix: add repo check for build-push.yml (langgenius#5141) feat: Add Optional API Key, Proxy Server, and Bypass Cache Parameters to Jina Tools (langgenius#5197) ... # Conflicts: # api/core/helper/code_executor/code_executor.py # api/requirements.txt
- Loading branch information
Showing
533 changed files
with
22,088 additions
and
1,654 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ concurrency: | |
|
||
jobs: | ||
test: | ||
name: API Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -59,7 +58,7 @@ jobs: | |
- name: Run Workflow | ||
run: dev/pytest/pytest_workflow.sh | ||
|
||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS) | ||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
|
@@ -68,6 +67,7 @@ jobs: | |
docker/docker-compose.milvus.yaml | ||
docker/docker-compose.pgvecto-rs.yaml | ||
docker/docker-compose.pgvector.yaml | ||
docker/docker-compose.chroma.yaml | ||
services: | | ||
weaviate | ||
qdrant | ||
|
@@ -76,6 +76,84 @@ jobs: | |
milvus-standalone | ||
pgvecto-rs | ||
pgvector | ||
chroma | ||
- name: Test Vector Stores | ||
run: dev/pytest/pytest_vdb.sh | ||
|
||
test-in-poetry: | ||
name: API Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: | ||
- "3.10" | ||
- "3.11" | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Poetry | ||
uses: abatilo/actions-poetry@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'poetry' | ||
cache-dependency-path: | | ||
api/pyproject.toml | ||
api/poetry.lock | ||
- name: Poetry check | ||
run: | | ||
poetry check -C api | ||
poetry show -C api | ||
- name: Install dependencies | ||
run: poetry install -C api --with dev | ||
|
||
- name: Run Unit tests | ||
run: poetry run -C api bash dev/pytest/pytest_unit_tests.sh | ||
|
||
- name: Run ModelRuntime | ||
run: poetry run -C api bash dev/pytest/pytest_model_runtime.sh | ||
|
||
- name: Run Tool | ||
run: poetry run -C api bash dev/pytest/pytest_tools.sh | ||
|
||
- name: Set up Sandbox | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
docker/docker-compose.middleware.yaml | ||
services: | | ||
sandbox | ||
ssrf_proxy | ||
- name: Run Workflow | ||
run: poetry run -C api bash dev/pytest/pytest_workflow.sh | ||
|
||
- name: Set up Vector Stores (Weaviate, Qdrant, PGVector, Milvus, PgVecto-RS, Chroma) | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: | | ||
docker/docker-compose.middleware.yaml | ||
docker/docker-compose.qdrant.yaml | ||
docker/docker-compose.milvus.yaml | ||
docker/docker-compose.pgvecto-rs.yaml | ||
docker/docker-compose.pgvector.yaml | ||
docker/docker-compose.chroma.yaml | ||
services: | | ||
weaviate | ||
qdrant | ||
etcd | ||
minio | ||
milvus-standalone | ||
pgvecto-rs | ||
pgvector | ||
chroma | ||
- name: Test Vector Stores | ||
run: poetry run -C api bash dev/pytest/pytest_vdb.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,16 +23,20 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Poetry | ||
uses: abatilo/actions-poetry@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
cache: 'poetry' | ||
cache-dependency-path: | | ||
./api/requirements.txt | ||
api/pyproject.toml | ||
api/poetry.lock | ||
- name: Install dependencies | ||
run: pip install -r ./api/requirements.txt | ||
run: poetry install -C api | ||
|
||
- name: Set up Middleware | ||
uses: hoverkraft-tech/[email protected] | ||
|
@@ -50,4 +54,4 @@ jobs: | |
- name: Run DB Migration | ||
run: | | ||
cd api | ||
flask db upgrade | ||
poetry run python -m flask db upgrade |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.