beekeeper-core 2.0.0b2__tar.gz → 2.0.2__tar.gz
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.
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/PKG-INFO +4 -3
- beekeeper_core-2.0.2/README.md +9 -0
- beekeeper_core-2.0.2/beekeeper/core/__init__.py +9 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/pyproject.toml +2 -1
- beekeeper_core-2.0.0b2/README.md +0 -9
- beekeeper_core-2.0.0b2/beekeeper/core/bridge/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/.gitignore +0 -0
- {beekeeper_core-2.0.0b2/beekeeper/core → beekeeper_core-2.0.2/beekeeper/core/bridge}/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/bridge/pydantic.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/document/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/document/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/embeddings/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/embeddings/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/embeddings/enums.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/evaluation/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/evaluation/answer_context_similarity.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/evaluation/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/evaluation/query_context_similarity.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/guardrails/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/guardrails/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/guardrails/types.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/llms/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/llms/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/llms/decorators.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/llms/enums.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/llms/types.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/loaders/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/loaders/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/loaders/directory.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/observability/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/observability/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/observability/types.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/prompts/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/prompts/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/prompts/utils.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/retrievers/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/retrievers/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/schema.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/semantic.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/sentence.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/token.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/text_chunkers/utils.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/tools/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/tools/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/vector_stores/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/vector_stores/base.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/workflow/__init__.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/workflow/enums.py +0 -0
- {beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/workflow/ingestion_workflow.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: beekeeper-core
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Load any data in one line of code and connect with AI applications
|
|
5
5
|
Project-URL: Repository, https://github.com/beekeeper-ai/beekeeper
|
|
6
6
|
Author-email: Leonardo Furnielis <leonardofurnielis@outlook.com>
|
|
@@ -12,6 +12,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
12
12
|
Requires-Python: <3.14,>=3.11
|
|
13
13
|
Requires-Dist: deprecated<2.0.0,>=1.3.1
|
|
14
14
|
Requires-Dist: nltk<4.0.0,>=3.9.2
|
|
15
|
+
Requires-Dist: novastack-core<1.0.1,>=1.0.0
|
|
15
16
|
Requires-Dist: numpy<2.0.0,>=1.26.4
|
|
16
17
|
Requires-Dist: pydantic<3.0.0,>=2.12.5
|
|
17
18
|
Requires-Dist: tiktoken<0.13.0,>=0.12.0
|
|
@@ -19,9 +20,9 @@ Provides-Extra: dev
|
|
|
19
20
|
Requires-Dist: ruff>=0.15.8; extra == 'dev'
|
|
20
21
|
Description-Content-Type: text/markdown
|
|
21
22
|
|
|
22
|
-
# Beekeeper
|
|
23
|
+
# Beekeeper core
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
Core Python package providing essential abstractions and interfaces for building LLM applications, with a focus on Retrieval-Augmented Generation (RAG).
|
|
25
26
|
|
|
26
27
|
## Installation
|
|
27
28
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import warnings
|
|
2
|
+
|
|
3
|
+
warnings.warn(
|
|
4
|
+
"The 'beekeeper-core' package is deprecated and has been moved to 'novastack-core'. "
|
|
5
|
+
"Please install to use 'pip install novastack-core' instead. "
|
|
6
|
+
"Its end-of-life (EOL) date is scheduled for 2026-09-01.",
|
|
7
|
+
DeprecationWarning,
|
|
8
|
+
stacklevel=2,
|
|
9
|
+
)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "beekeeper-core"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.2"
|
|
8
8
|
description = "Load any data in one line of code and connect with AI applications"
|
|
9
9
|
authors = [{ name = "Leonardo Furnielis", email = "leonardofurnielis@outlook.com" }]
|
|
10
10
|
license = { text = "Apache-2.0" }
|
|
@@ -22,6 +22,7 @@ dependencies = [
|
|
|
22
22
|
"numpy>=1.26.4,<2.0.0",
|
|
23
23
|
"pydantic>=2.12.5,<3.0.0",
|
|
24
24
|
"tiktoken>=0.12.0,<0.13.0",
|
|
25
|
+
"novastack-core>=1.0.0,<1.0.1",
|
|
25
26
|
]
|
|
26
27
|
|
|
27
28
|
[project.optional-dependencies]
|
beekeeper_core-2.0.0b2/README.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# Beekeeper Core
|
|
2
|
-
|
|
3
|
-
This is the primary Python package for the Beekeeper. It provides essential classes and abstractions that serve as the backbone for applications built with LLMs, particularly Retrieval-Augmented Generation (RAG). These foundational components include interfaces for LLMs, vector databases, embeddings, storage systems, callable functions, and more.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install beekeeper-core
|
|
9
|
-
```
|
|
File without changes
|
|
File without changes
|
{beekeeper_core-2.0.0b2/beekeeper/core → beekeeper_core-2.0.2/beekeeper/core/bridge}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{beekeeper_core-2.0.0b2 → beekeeper_core-2.0.2}/beekeeper/core/workflow/ingestion_workflow.py
RENAMED
|
File without changes
|