We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e63394 commit a22d037Copy full SHA for a22d037
src/agentlab/agents/generic_agent_hinter/__init__.py
@@ -0,0 +1,17 @@
1
+from agentlab.agents.hint_use_agent import *
2
+import warnings
3
+import sys
4
+
5
+warnings.warn(
6
+ "generic_agent_hinter is renamed to hint_use_agent.",
7
+ DeprecationWarning,
8
+ stacklevel=2,
9
+)
10
11
+# Create module alias - redirect old module to new module
12
+import agentlab.agents.hint_use_agent as new_module
13
14
+sys.modules["agentlab.agents.generic_agent_hinter"] = new_module
15
16
+# Re-export everything from the new location
17
0 commit comments