beekeeper-ai 0.6.1__tar.gz → 0.6.3__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.3}/PKG-INFO +1 -1
- beekeeper_ai-0.6.3/beekeeper/__init__.py +1 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/monitor/watsonx.py +8 -8
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/pyproject.toml +1 -1
- beekeeper_ai-0.6.1/beekeeper/__init__.py +0 -1
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/LICENSE +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/README.md +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/document/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/document/schema.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/document_loaders/base.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/embeddings/base.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/text_splitters/utils.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/core/utils/pairwise.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/directory.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/docx.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/html.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/json.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/pdf.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/s3.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/embeddings/huggingface.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/embeddings/watsonx.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/evaluation/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/evaluation/knowledge_base_coverage.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/monitor/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/retrievers/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/retrievers/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/semantic.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/sentence.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/token.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/vector_stores/__init__.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/vector_stores/chroma.py +0 -0
- {beekeeper_ai-0.6.1 → beekeeper_ai-0.6.3}/beekeeper/vector_stores/elasticsearch.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.6.3"
|
|
@@ -185,7 +185,7 @@ class WatsonxExternalPromptMonitoring:
|
|
|
185
185
|
)
|
|
186
186
|
|
|
187
187
|
try:
|
|
188
|
-
if self._fact_cpd_creds:
|
|
188
|
+
if hasattr(self, '_fact_cpd_creds') and self._fact_cpd_creds:
|
|
189
189
|
cpd_creds = CloudPakforDataConfig(**self._fact_cpd_creds)
|
|
190
190
|
|
|
191
191
|
aigov_client = AIGovFactsClient(
|
|
@@ -220,7 +220,7 @@ class WatsonxExternalPromptMonitoring:
|
|
|
220
220
|
from ibm_watsonx_ai import APIClient, Credentials # type: ignore
|
|
221
221
|
|
|
222
222
|
try:
|
|
223
|
-
if self._wml_cpd_creds:
|
|
223
|
+
if hasattr(self, '_wml_cpd_creds') and self._wml_cpd_creds:
|
|
224
224
|
creds = Credentials(**self._wml_cpd_creds)
|
|
225
225
|
|
|
226
226
|
wml_client = APIClient(creds)
|
|
@@ -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
|
)
|
|
@@ -563,7 +563,7 @@ class WatsonxPromptMonitoring:
|
|
|
563
563
|
)
|
|
564
564
|
|
|
565
565
|
try:
|
|
566
|
-
if self._fact_cpd_creds:
|
|
566
|
+
if hasattr(self, '_fact_cpd_creds') and self._fact_cpd_creds:
|
|
567
567
|
cpd_creds = CloudPakforDataConfig(**self._fact_cpd_creds)
|
|
568
568
|
|
|
569
569
|
aigov_client = AIGovFactsClient(
|
|
@@ -598,7 +598,7 @@ class WatsonxPromptMonitoring:
|
|
|
598
598
|
from ibm_watsonx_ai import APIClient, Credentials # type: ignore
|
|
599
599
|
|
|
600
600
|
try:
|
|
601
|
-
if self._wml_cpd_creds:
|
|
601
|
+
if hasattr(self, '_wml_cpd_creds') and self._wml_cpd_creds:
|
|
602
602
|
creds = Credentials(**self._wml_cpd_creds)
|
|
603
603
|
|
|
604
604
|
wml_client = APIClient(creds)
|
|
@@ -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.3"
|
|
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
|