neuro-simulator 0.0.4__py3-none-any.whl → 0.1.2__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.
@@ -1 +1,10 @@
1
- # neuro_simulator/__init__.py
1
+ # neuro_simulator/__init__.py
2
+
3
+ # 导出主要模块以便于使用
4
+ from .builtin_agent import initialize_builtin_agent, get_builtin_response, reset_builtin_agent_memory
5
+
6
+ __all__ = [
7
+ "initialize_builtin_agent",
8
+ "get_builtin_response",
9
+ "reset_builtin_agent_memory"
10
+ ]
@@ -0,0 +1,8 @@
1
+ # agent/__init__.py
2
+ """
3
+ Agent module for Neuro Simulator Server
4
+ """
5
+
6
+ from .core import Agent
7
+
8
+ __all__ = ["Agent"]