beekeeper-monitors-watsonx 1.0.5__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.
@@ -0,0 +1,85 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ #IDE
10
+ .DS_Store
11
+ .idea
12
+ .vscode
13
+
14
+ # Distribution / packaging
15
+ .Python
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ share/python-wheels/
29
+ *.egg-info/
30
+ .installed.cfg
31
+ *.egg
32
+ MANIFEST
33
+
34
+ # PyInstaller
35
+ # Usually these files are written by a python script from a template
36
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
37
+ *.manifest
38
+ *.spec
39
+
40
+ # Installer logs
41
+ pip-log.txt
42
+ pip-delete-this-directory.txt
43
+
44
+ # Unit test / coverage reports
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ *.py,cover
55
+ .hypothesis/
56
+ .pytest_cache/
57
+ cover/
58
+
59
+ # Mkdocs documentation
60
+ docs/_build/
61
+ docs/api_reference/site/
62
+
63
+ # Ruff
64
+ .ruff_cache/
65
+
66
+ # PyBuilder
67
+ .pybuilder/
68
+ target/
69
+
70
+ # Jupyter Notebook
71
+ .ipynb_checkpoints
72
+
73
+ # pyenv
74
+ # For a library or package, you might want to ignore these files since the code is
75
+ # intended to run in multiple environments; otherwise, check them in:
76
+ .python-version
77
+
78
+ # Environments
79
+ .env
80
+ .venv
81
+ env/
82
+ venv/
83
+ ENV/
84
+ env.bak/
85
+ venv.bak/
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: beekeeper-monitors-watsonx
3
+ Version: 1.0.5
4
+ Summary: beekeeper monitors watsonx extension
5
+ Author-email: Leonardo Furnielis <leonardofurnielis@outlook.com>
6
+ License: Apache-2.0
7
+ Requires-Python: <4.0,>=3.10
8
+ Requires-Dist: beekeeper-core<2.0.0,>=1.0.4
9
+ Requires-Dist: certifi<2026.0.0,>=2025.4.26
10
+ Requires-Dist: ibm-aigov-facts-client<1.0.97,>=1.0.96
11
+ Requires-Dist: ibm-watson-openscale<3.1.0,>=3.0.49
12
+ Requires-Dist: ibm-watsonx-ai<2.0.0,>=1.3.26
13
+ Requires-Dist: ipython==8.37.0
14
+ Provides-Extra: dev
15
+ Requires-Dist: ruff>=0.11.13; extra == 'dev'
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Beekeeper monitors extension - watsonx
19
+
20
+ ## Installation
21
+
22
+ ```bash
23
+ pip install beekeeper-monitors-watsonx
24
+ ```
@@ -0,0 +1,7 @@
1
+ # Beekeeper monitors extension - watsonx
2
+
3
+ ## Installation
4
+
5
+ ```bash
6
+ pip install beekeeper-monitors-watsonx
7
+ ```
@@ -0,0 +1,21 @@
1
+ from beekeeper.monitors.watsonx.base import (
2
+ CloudPakforDataCredentials,
3
+ IntegratedSystemCredentials,
4
+ WatsonxCustomMetric,
5
+ WatsonxExternalPromptMonitor,
6
+ WatsonxLocalMetric,
7
+ WatsonxMetric,
8
+ WatsonxMetricThreshold,
9
+ WatsonxPromptMonitor,
10
+ )
11
+
12
+ __all__ = [
13
+ "CloudPakforDataCredentials",
14
+ "IntegratedSystemCredentials",
15
+ "WatsonxCustomMetric",
16
+ "WatsonxExternalPromptMonitor",
17
+ "WatsonxLocalMetric",
18
+ "WatsonxMetric",
19
+ "WatsonxMetricThreshold",
20
+ "WatsonxPromptMonitor",
21
+ ]