A fast and scalable app that adds vector search capabilities to your Django applications. It offers low latency, fast search results, native Django integration, and automatic syncing between your models and the vector index. Incremental updates are also supported out of the box.
Setting up a new project to evaluate what you've got going on here and ran into a bug fairly early on. After going through the quickstart and tutorials, I moved on to using the api and ran into the following error:
AssertionError at /api/vectordb/search/
AutoFilterSet resolved field 'metadata' with 'exact' lookup to an unrecognized field type JSONField. Try adding an override to 'Meta.filter_overrides'. See: https://django-filter.readthedocs.io/en/main/ref/filterset.html#customise-filter-generation-with-filter-overrides
Note, I was able to work around this issue by editing the vectordb/views.py file from
Setting up a new project to evaluate what you've got going on here and ran into a bug fairly early on. After going through the quickstart and tutorials, I moved on to using the api and ran into the following error:
Note, I was able to work around this issue by editing the vectordb/views.py file from
to
i.e. just removing the metadata field from the filterset_fields.
Very nice project otherwise though!