beekeeper-ai 0.6.1__tar.gz → 0.6.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_ai-0.6.1 → beekeeper_ai-0.6.2}/PKG-INFO +1 -1
- beekeeper_ai-0.6.2/beekeeper/__init__.py +1 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/monitor/watsonx.py +4 -4
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/pyproject.toml +1 -1
- beekeeper_ai-0.6.1/beekeeper/__init__.py +0 -1
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/LICENSE +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/README.md +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/document/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/document/schema.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/document_loaders/base.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/embeddings/base.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/text_splitters/utils.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/core/utils/pairwise.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/directory.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/docx.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/html.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/json.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/pdf.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/s3.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/document_loaders/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/embeddings/huggingface.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/embeddings/watsonx.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/evaluation/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/evaluation/knowledge_base_coverage.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/monitor/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/retrievers/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/retrievers/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/text_splitters/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/text_splitters/semantic.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/text_splitters/sentence.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/text_splitters/token.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/vector_stores/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/vector_stores/chroma.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.2}/beekeeper/vector_stores/elasticsearch.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.6.2"
|
|
@@ -326,7 +326,7 @@ class WatsonxExternalPromptMonitoring:
|
|
|
326
326
|
|
|
327
327
|
if not self._wos_client:
|
|
328
328
|
try:
|
|
329
|
-
if self._wos_cpd_creds:
|
|
329
|
+
if hasattr(self, '_wos_cpd_creds') and self._wos_cpd_creds:
|
|
330
330
|
from ibm_cloud_sdk_core.authenticators import (
|
|
331
331
|
CloudPakForDataAuthenticator, # type: ignore
|
|
332
332
|
)
|
|
@@ -445,7 +445,7 @@ class WatsonxExternalPromptMonitoring:
|
|
|
445
445
|
|
|
446
446
|
if not self._wos_client:
|
|
447
447
|
try:
|
|
448
|
-
if self._wos_cpd_creds:
|
|
448
|
+
if hasattr(self, '_wos_cpd_creds') and self._wos_cpd_creds:
|
|
449
449
|
from ibm_cloud_sdk_core.authenticators import (
|
|
450
450
|
CloudPakForDataAuthenticator, # type: ignore
|
|
451
451
|
)
|
|
@@ -689,7 +689,7 @@ class WatsonxPromptMonitoring:
|
|
|
689
689
|
|
|
690
690
|
if not self._wos_client:
|
|
691
691
|
try:
|
|
692
|
-
if self._wos_cpd_creds:
|
|
692
|
+
if hasattr(self, '_wos_cpd_creds') and self._wos_cpd_creds:
|
|
693
693
|
from ibm_cloud_sdk_core.authenticators import (
|
|
694
694
|
CloudPakForDataAuthenticator, # type: ignore
|
|
695
695
|
)
|
|
@@ -804,7 +804,7 @@ class WatsonxPromptMonitoring:
|
|
|
804
804
|
|
|
805
805
|
if not self._wos_client:
|
|
806
806
|
try:
|
|
807
|
-
if self._wos_cpd_creds:
|
|
807
|
+
if hasattr(self, '_wos_cpd_creds') and self._wos_cpd_creds:
|
|
808
808
|
from ibm_cloud_sdk_core.authenticators import (
|
|
809
809
|
CloudPakForDataAuthenticator, # type: ignore
|
|
810
810
|
)
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "beekeeper-ai"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.2"
|
|
8
8
|
description = "Load any data in one line of code and connect with AI applications"
|
|
9
9
|
authors = ["Leonardo Furnielis <leonardofurnielis@outlook.com>"]
|
|
10
10
|
license = "MIT"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.6.1"
|
|
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
|