docs: update Chroma to support hybrid search, sparse vectors, and BM25 #1229
Workflow file for this run
This file contains hidden or 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
| name: Validate vendor JSON files | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Validate JSON | |
| uses: GrantBirki/json-yaml-validate@v2.4.0 | |
| with: | |
| base_dir: docs/tools/vdb_table/data | |
| json_schema: docs/tools/vdb_table/vendor.schema.json | |
| json_schema_version: "draft-2020-12" |