mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-02 10:07:29 +00:00
* add stub implementation * reimplementation * test files * docstore tests * tests for document * better testing * remove mmh3 * readme * only store, no retrieval yet * linting * review feedback * initial filters implementation * working on filters * linters * filtering works and is isolated by document store * simplify filters * comments * improve filters matching code * review feedback * pylint * move logic into_create_id * mypy
11 lines
142 B
Python
11 lines
142 B
Python
class StoreError(Exception):
|
|
pass
|
|
|
|
|
|
class DuplicateDocumentError(StoreError):
|
|
pass
|
|
|
|
|
|
class MissingDocumentError(StoreError):
|
|
pass
|