beekeeper-monitors-watsonx 1.0.5__tar.gz → 1.1.0.post1__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.
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beekeeper-monitors-watsonx
3
- Version: 1.0.5
3
+ Version: 1.1.0.post1
4
4
  Summary: beekeeper monitors watsonx extension
5
5
  Author-email: Leonardo Furnielis <leonardofurnielis@outlook.com>
6
6
  License: Apache-2.0
7
7
  Requires-Python: <4.0,>=3.10
8
- Requires-Dist: beekeeper-core<2.0.0,>=1.0.4
8
+ Requires-Dist: beekeeper-core<2.0.0,>=1.0.5
9
9
  Requires-Dist: certifi<2026.0.0,>=2025.4.26
10
10
  Requires-Dist: ibm-aigov-facts-client<1.0.97,>=1.0.96
11
11
  Requires-Dist: ibm-watson-openscale<3.1.0,>=3.0.49
@@ -1,12 +1,19 @@
1
1
  from beekeeper.monitors.watsonx.base import (
2
+ WatsonxExternalPromptMonitor,
3
+ WatsonxPromptMonitor,
4
+ )
5
+ from beekeeper.monitors.watsonx.custom_metric import (
6
+ WatsonxCustomMetric,
7
+ WatsonxCustomMetricsManager,
8
+ )
9
+ from beekeeper.monitors.watsonx.supporting_classes.credentials import (
2
10
  CloudPakforDataCredentials,
3
11
  IntegratedSystemCredentials,
4
- WatsonxCustomMetric,
5
- WatsonxExternalPromptMonitor,
12
+ )
13
+ from beekeeper.monitors.watsonx.supporting_classes.metric import (
6
14
  WatsonxLocalMetric,
7
15
  WatsonxMetric,
8
16
  WatsonxMetricThreshold,
9
- WatsonxPromptMonitor,
10
17
  )
11
18
 
12
19
  __all__ = [
@@ -15,6 +22,7 @@ __all__ = [
15
22
  "WatsonxCustomMetric",
16
23
  "WatsonxExternalPromptMonitor",
17
24
  "WatsonxLocalMetric",
25
+ "WatsonxCustomMetricsManager",
18
26
  "WatsonxMetric",
19
27
  "WatsonxMetricThreshold",
20
28
  "WatsonxPromptMonitor",