Metadata-Version: 2.1
Name: core-semantic-search-app
Version: 1.0.0
Summary: Semantic Search utils for the curator core project
Home-page: https://github.com/usnistgov/core_semantic_search_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
Provides-Extra: sentence_transformers
License-File: LICENSE.md

========================
Core Semantic Search App
========================

Semantic search for the curator core project.

Quick start
===========

1. Add "core_semantic_search_app" to your INSTALLED_APPS setting
----------------------------------------------------------------

.. code:: python

    INSTALLED_APPS = [
      ...
      'core_semantic_search_app',
    ]


2. Include the core_semantic_search_app URLconf in your project urls.py
-----------------------------------------------------------------------

.. code:: python

    re_path(r'^semantic-search/', include('core_semantic_search_app.urls')),
