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 +39 -0
- vera/collection.py +922 -0
- vera/core/__init__.py +1 -0
- vera/core/access.py +124 -0
- vera/core/embeddings.py +87 -0
- vera/core/figures.py +144 -0
- vera/core/inspection.py +20 -0
- vera/core/schema.py +169 -0
- vera/core/search.py +257 -0
- vera/core/validation.py +225 -0
- vera/corpus.py +517 -0
- vera/database.py +731 -0
- vera/document.py +383 -0
- vera/models.py +162 -0
- vera_doc-0.2.0.dist-info/METADATA +510 -0
- vera_doc-0.2.0.dist-info/RECORD +17 -0
- vera_doc-0.2.0.dist-info/WHEEL +4 -0
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
|
+
]
|