Upload alpha_factory/personas/__init__.py with huggingface_hub
Browse files
alpha_factory/personas/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Agent personas."""
|
| 2 |
+
from .hypothesis_hunter import generate_hypothesis
|
| 3 |
+
from .expression_compiler import compile_expression
|
| 4 |
+
from .crowd_scout import scout_novelty
|
| 5 |
+
from .performance_surgeon import diagnose_performance
|
| 6 |
+
from .gatekeeper import gate_alpha
|
| 7 |
+
|
| 8 |
+
__all__ = [
|
| 9 |
+
"generate_hypothesis",
|
| 10 |
+
"compile_expression",
|
| 11 |
+
"scout_novelty",
|
| 12 |
+
"diagnose_performance",
|
| 13 |
+
"gate_alpha",
|
| 14 |
+
]
|