vera-doc 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
vera/__init__.py ADDED
@@ -0,0 +1,39 @@
1
+ """VERA — Vector-Embedded Retrieval Archive."""
2
+
3
+ from .collection import (
4
+ VeraCollectionIndex,
5
+ build_library_index,
6
+ library_index_status,
7
+ update_library_index,
8
+ )
9
+ from .corpus import CorpusSearchResult, VeraCorpus
10
+ from .database import (
11
+ DuplicateRecordError,
12
+ EmbeddingFunction,
13
+ ReadOnlyError,
14
+ RecordNotFoundError,
15
+ VeraDatabase,
16
+ )
17
+ from .document import VeraDocument, SearchResult, SourceDocument
18
+ from .models import AttachmentRecord, AttachmentRef, ChunkRecord, QueryResult
19
+
20
+ __all__ = [
21
+ "VeraDocument",
22
+ "SearchResult",
23
+ "SourceDocument",
24
+ "VeraCorpus",
25
+ "CorpusSearchResult",
26
+ "VeraCollectionIndex",
27
+ "build_library_index",
28
+ "update_library_index",
29
+ "library_index_status",
30
+ "VeraDatabase",
31
+ "EmbeddingFunction",
32
+ "ChunkRecord",
33
+ "AttachmentRecord",
34
+ "AttachmentRef",
35
+ "QueryResult",
36
+ "DuplicateRecordError",
37
+ "RecordNotFoundError",
38
+ "ReadOnlyError",
39
+ ]