-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support vectordb for artifacts and services (#713)
* support vectordb for artifacts and services * Replace page/page_size to offset/limit * add config fields * fix redis version * use redis stack * add back overwrite * fix created_at * Fix overwrite * Fix overwrite * Fix overwrite * fix fastembed version * support passing service_embedding in config * Only embed services has docs * Fix embedding model disabled error * add user 5 * fix user 5 * format * add headers={"Connection": "close"} * bump version
- Loading branch information
Showing
18 changed files
with
1,151 additions
and
111 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 |
---|---|---|
|
@@ -26,6 +26,11 @@ jobs: | |
ports: | ||
- 5432:5432 | ||
options: --health-cmd "pg_isready -U postgres" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
redis: | ||
image: redis/redis-stack:7.2.0-v13 | ||
ports: | ||
- 6333:6379 | ||
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
|
@@ -36,11 +41,6 @@ jobs: | |
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox tox-gh-actions | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
with: | ||
redis-version: 6 | ||
redis-port: 6333 | ||
- name: Test with tox | ||
run: tox | ||
env: | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "0.20.39.post7" | ||
"version": "0.20.39.post8" | ||
} |
Oops, something went wrong.