diff --git a/src/phoenix/__init__.py b/src/phoenix/__init__.py index 989247246b..f462b9c737 100644 --- a/src/phoenix/__init__.py +++ b/src/phoenix/__init__.py @@ -31,6 +31,11 @@ - Explore model performance, drift, and data quality metrics """ +# The following line is needed to ensure that other modules using the +# `phoenix.*` path can be discovered by Bazel. For details, +# see: https://github.com/Arize-ai/openinference/issues/398 +__path__ = __import__("pkgutil").extend_path(__path__, __name__) + __all__ = [ "__version__", "active_session",