vibrary 0.0.1__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.
vibrary/__init__.py ADDED
@@ -0,0 +1,21 @@
1
+ """
2
+ vibrary - Universal Content Registry for AI Applications
3
+
4
+ A unified system for storing and searching content of any type:
5
+ documents, posts, audio, video, and other media with hierarchical
6
+ relationships, versioning, and semantic search.
7
+
8
+ Features:
9
+ - Entity Registry: Unified metadata for all content types
10
+ - Information Blocks: Searchable content chunks with graph relations
11
+ - 3-Layer Hybrid Search: Dense + vocabulary + sparse vector search
12
+ - Hierarchical Relations: parent/child, avatar/main, revisions
13
+ """
14
+
15
+ __version__ = "0.0.1"
16
+ __author__ = "LifeAiTools"
17
+
18
+ # Placeholder - will be implemented in future versions
19
+ __all__ = [
20
+ "__version__",
21
+ ]
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibrary
3
+ Version: 0.0.1
4
+ Summary: Universal Content Registry for AI Applications - unified storage and semantic search for documents, posts, media
5
+ Project-URL: Homepage, https://github.com/LifeAiTools/vibrary
6
+ Project-URL: Documentation, https://github.com/LifeAiTools/vibrary#readme
7
+ Project-URL: Repository, https://github.com/LifeAiTools/vibrary
8
+ Project-URL: Issues, https://github.com/LifeAiTools/vibrary/issues
9
+ Author-email: LifeAiTools <dev@lifeaitools.com>
10
+ License-Expression: Apache-2.0
11
+ Keywords: ai,content-registry,document-management,hybrid-search,knowledge-base,qdrant,semantic-search,vector-search
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Database
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Classifier: Topic :: Text Processing :: Indexing
23
+ Requires-Python: >=3.10
24
+ Provides-Extra: dev
25
+ Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
26
+ Requires-Dist: pytest>=7.0; extra == 'dev'
27
+ Requires-Dist: ruff>=0.1; extra == 'dev'
28
+ Description-Content-Type: text/markdown
29
+
30
+ # vibrary
31
+
32
+ > Universal Content Registry for AI Applications
33
+
34
+ ## Coming Soon
35
+
36
+ **vibrary** is a unified system for storing and searching content of any type with semantic search capabilities.
37
+
38
+ ### Planned Features
39
+
40
+ - **Entity Registry** - Unified metadata for documents, posts, audio, video, and other media
41
+ - **Information Blocks** - Searchable content chunks with graph relations
42
+ - **3-Layer Hybrid Search** - Dense embeddings + vocabulary matching + sparse vectors
43
+ - **Hierarchical Relations** - parent/child, avatar/main, revisions tracking
44
+ - **Source Tracking** - Origin, conversions, and format history
45
+
46
+ ### Use Cases
47
+
48
+ - Knowledge bases with mixed content types
49
+ - Document management with semantic search
50
+ - Media libraries with transcription/avatar support
51
+ - Legal document versioning and comparison
52
+
53
+ ## Installation (future)
54
+
55
+ ```bash
56
+ pip install vibrary
57
+ ```
58
+
59
+ ## Links
60
+
61
+ - GitHub: https://github.com/LifeAiTools/vibrary
62
+ - PyPI: https://pypi.org/project/vibrary/
63
+
64
+ ## License
65
+
66
+ Apache-2.0
@@ -0,0 +1,4 @@
1
+ vibrary/__init__.py,sha256=Ekcc-nIOB-gyZ7mExFZVSQrZe_FYX5GV6RAit6FgoEg,651
2
+ vibrary-0.0.1.dist-info/METADATA,sha256=hWKo--9-16du9_ZD-RdJC1DfDPejyUjnnyUoNjjkJi8,2397
3
+ vibrary-0.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
4
+ vibrary-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any