tm-kn / wagtail-vector-index

Store Wagtail pages & Django models as embeddings in vector databases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wagtail Vector Index

License: MIT PyPI version ai CI

Wagtail Vector Index provides a way to turn Django models, Wagtail pages, and anything else in to embeddings which are stored in a one of multiple vector database backends.

This provides the backbone for features including:

  • Natural language search
  • Similarity search
  • Content recommendations

Links

Supported Versions

  • Wagtail 5.2
  • Django 4.2
  • Python 3.11, 3.12

Contributing

Install

To make changes to this project, first clone this repository:

git clone https://github.com/tomusher/wagtail-vector-index.git
cd wagtail-vector-index

With your preferred virtualenv activated, install testing dependencies:

Using pip

python -m pip install --upgrade pip>=21.3
python -m pip install -e .[testing] -U

Using flit

python -m pip install flit
flit install

pre-commit

Note that this project uses pre-commit. It is included in the project testing requirements. To set up locally:

# go to the project directory
$ cd wagtail-vector-index
# initialize pre-commit
$ pre-commit install

# Optional, run all checks once for this, then the checks will run only on the changed files
$ git ls-files --others --cached --exclude-standard | xargs pre-commit run --files

How to run tests

Now you can run tests as shown below:

tox

or, you can run them for a specific environment tox -e python3.8-django3.2-wagtail2.15 or specific test tox -e python3.9-django3.2-wagtail2.15-sqlite wagtail-vector-index.tests.test_file.TestClass.test_method

To run the test app interactively, use tox -e interactive, visit http://127.0.0.1:8020/admin/ and log in with admin/changeme.

About

Store Wagtail pages & Django models as embeddings in vector databases

License:MIT License


Languages

Language:Python 100.0%