gaurv007 commited on
Commit
e085bfa
·
verified ·
1 Parent(s): e07ed35

Upload alpha_factory/personas/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. alpha_factory/personas/__init__.py +14 -0
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
+ ]