beekeeper-ai 0.6.2__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.2 → beekeeper_ai-0.6.3}/PKG-INFO +1 -1
- beekeeper_ai-0.6.3/beekeeper/__init__.py +1 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/monitor/watsonx.py +4 -4
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/pyproject.toml +1 -1
- beekeeper_ai-0.6.2/beekeeper/__init__.py +0 -1
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/LICENSE +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/README.md +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/document/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/document/schema.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/document_loaders/base.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/embeddings/base.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/text_splitters/utils.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/core/utils/pairwise.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/directory.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/docx.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/html.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/json.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/pdf.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/s3.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/document_loaders/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/embeddings/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/embeddings/huggingface.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/embeddings/watsonx.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/evaluation/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/evaluation/knowledge_base_coverage.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/monitor/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/retrievers/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/retrievers/watson_discovery.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/semantic.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/sentence.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/text_splitters/token.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/vector_stores/__init__.py +0 -0
- {beekeeper_ai-0.6.2 → beekeeper_ai-0.6.3}/beekeeper/vector_stores/chroma.py +0 -0
- {beekeeper_ai-0.6.2 → 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)
|
|
@@ -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)
|
|
@@ -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.2"
|
|
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
|