beekeeper-ai 1.0.5__tar.gz → 1.0.10__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_ai-1.0.5 → beekeeper_ai-1.0.10}/PKG-INFO +7 -7
- {beekeeper_ai-1.0.5 → beekeeper_ai-1.0.10}/pyproject.toml +8 -8
- {beekeeper_ai-1.0.5 → beekeeper_ai-1.0.10}/.gitignore +0 -0
- {beekeeper_ai-1.0.5 → beekeeper_ai-1.0.10}/LICENSE +0 -0
- {beekeeper_ai-1.0.5 → beekeeper_ai-1.0.10}/README.md +0 -0
- {beekeeper_ai-1.0.5 → beekeeper_ai-1.0.10}/_beekeeper/beekeeper/_bundle/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: beekeeper-ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.10
|
|
4
4
|
Summary: Load any data in one line of code and connect with AI applications
|
|
5
5
|
Project-URL: Documentation, https://beekeeper-ai.github.io/beekeeper
|
|
6
6
|
Project-URL: Repository, https://github.com/beekeeper-ai/beekeeper
|
|
@@ -11,13 +11,13 @@ Keywords: AI,LLM,QA,RAG,data,observability,retrieval,semantic-search
|
|
|
11
11
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
12
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
-
Requires-Python: <
|
|
15
|
-
Requires-Dist: beekeeper-core<2.0.0,>=1.0.
|
|
16
|
-
Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.
|
|
17
|
-
Requires-Dist: beekeeper-llms-litellm<2.0.0,>=1.0.
|
|
18
|
-
Requires-Dist: beekeeper-readers-file<2.0.0,>=1.0.
|
|
14
|
+
Requires-Python: <3.14,>=3.11
|
|
15
|
+
Requires-Dist: beekeeper-core<2.0.0,>=1.0.10
|
|
16
|
+
Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.4
|
|
17
|
+
Requires-Dist: beekeeper-llms-litellm<2.0.0,>=1.0.2
|
|
18
|
+
Requires-Dist: beekeeper-readers-file<2.0.0,>=1.0.2
|
|
19
19
|
Provides-Extra: dev
|
|
20
|
-
Requires-Dist: ruff>=0.
|
|
20
|
+
Requires-Dist: ruff>=0.14.9; extra == 'dev'
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
23
|
# 🗂️ Beekeeper 🐝
|
|
@@ -4,12 +4,12 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "beekeeper-ai"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.10"
|
|
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" }
|
|
11
11
|
readme = "README.md"
|
|
12
|
-
requires-python = ">=3.
|
|
12
|
+
requires-python = ">=3.11,<3.14"
|
|
13
13
|
keywords = ["AI", "LLM", "QA", "RAG", "data", "observability", "retrieval", "semantic-search"]
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
@@ -17,15 +17,15 @@ classifiers = [
|
|
|
17
17
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
18
18
|
]
|
|
19
19
|
dependencies = [
|
|
20
|
-
"beekeeper-core>=1.0.
|
|
21
|
-
"beekeeper-embeddings-huggingface>=1.0.
|
|
22
|
-
"beekeeper-llms-litellm>=1.0.
|
|
23
|
-
"beekeeper-readers-file>=1.0.
|
|
20
|
+
"beekeeper-core>=1.0.10,<2.0.0",
|
|
21
|
+
"beekeeper-embeddings-huggingface>=1.0.4,<2.0.0",
|
|
22
|
+
"beekeeper-llms-litellm>=1.0.2,<2.0.0",
|
|
23
|
+
"beekeeper-readers-file>=1.0.2,<2.0.0",
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
[project.optional-dependencies]
|
|
27
27
|
dev = [
|
|
28
|
-
"ruff>=0.
|
|
28
|
+
"ruff>=0.14.9",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[project.urls]
|
|
@@ -43,7 +43,7 @@ include = ["_beekeeper/beekeeper"]
|
|
|
43
43
|
|
|
44
44
|
[tool.ruff]
|
|
45
45
|
extend-exclude = ["docs"]
|
|
46
|
-
target-version = "
|
|
46
|
+
target-version = "py311"
|
|
47
47
|
|
|
48
48
|
[tool.ruff.lint]
|
|
49
49
|
ignore = ["D417", "COM812", "E501"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|