Getting Started
Creating a Store
To store and search documents, first create a DuckDBStore instance:
from gdtest_interlinks import DuckDBStore
store = DuckDBStore("my-store")Checking the Base Interface
Every store implements the BaseStore interface:
isinstance(store, BaseStore)Running Queries
Call query() to search:
results = query(store, "hello")See the API Reference for full details.