-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (24 loc) · 855 Bytes
/
__init__.py
File metadata and controls
29 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
InferNode - Scalable Inference Platform
A distributed inference platform for AI/ML workloads with auto-discovery,
telemetry, and flexible result publishing.
"""
# Import version from canonical location
try:
from InferenceNode._version import __version__
except ImportError:
__version__ = "0.1.0"
__author__ = "Oliver Hamilton"
__email__ = "olkhamsoft@gmail.com"
__description__ = "Scalable inference platform with multi-node management and control"
# Public API - only expose what users should import
__all__ = [
'__version__',
'__author__',
'__email__',
'__description__'
]
# Note: Main components should be imported directly from their modules:
# from InferenceNode.inference_node import InferenceNode
# from InferenceEngine import InferenceEngineFactory
# from ResultPublisher import ResultPublisher, ResultDestination