opik-optimizer 2.1.0__py3-none-any.whl → 2.1.1__py3-none-any.whl

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.
@@ -16,6 +16,7 @@ from .gepa_optimizer import GepaOptimizer
16
16
  from .logging_config import setup_logging
17
17
  from .meta_prompt_optimizer import MetaPromptOptimizer
18
18
  from .mipro_optimizer import MiproOptimizer
19
+ from .hierarchical_reflective_optimizer import HierarchicalReflectiveOptimizer
19
20
  from .optimization_config.configs import TaskConfig
20
21
  from .optimization_result import OptimizationResult
21
22
  from .parameter_optimizer import (
@@ -40,6 +41,7 @@ __all__ = [
40
41
  "MetaPromptOptimizer",
41
42
  "MiproOptimizer",
42
43
  "EvolutionaryOptimizer",
44
+ "HierarchicalReflectiveOptimizer",
43
45
  "ParameterOptimizer",
44
46
  "OptimizationResult",
45
47
  "OptimizableAgent",
@@ -0,0 +1,5 @@
1
+ from .hierarchical_reflective_optimizer import HierarchicalReflectiveOptimizer
2
+
3
+ __all__ = [
4
+ "HierarchicalReflectiveOptimizer",
5
+ ]