Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VEC-224: Add support for sparse and hybrid indexes #37

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand All @@ -40,6 +40,11 @@ jobs:
export TOKEN="${{secrets.TOKEN}}"
export EMBEDDING_URL="${{secrets.EMBEDDING_URL}}"
export EMBEDDING_TOKEN="${{secrets.EMBEDDING_TOKEN}}"
poetry add --dev pytest
export SPARSE_URL="${{secrets.SPARSE_URL}}"
export SPARSE_TOKEN="${{secrets.SPARSE_TOKEN}}"
export HYBRID_URL="${{secrets.HYBRID_URL}}"
export HYBRID_TOKEN="${{secrets.HYBRID_TOKEN}}"
export HYBRID_EMBEDDING_URL="${{secrets.HYBRID_EMBEDDING_URL}}"
export HYBRID_EMBEDDING_TOKEN="${{secrets.HYBRID_EMBEDDING_TOKEN}}"
poetry install
poetry run pytest
Loading
Loading