-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/chatbot-color-theme-main
- Loading branch information
Showing
342 changed files
with
16,571 additions
and
1,244 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,82 @@ 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 | ||
|
||
- 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
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.