neuro-simulator 0.0.3__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.
- neuro_simulator/__init__.py +10 -1
- neuro_simulator/agent/__init__.py +8 -0
- neuro_simulator/agent/api.py +737 -0
- neuro_simulator/agent/core.py +471 -0
- neuro_simulator/agent/llm.py +104 -0
- neuro_simulator/agent/memory/__init__.py +4 -0
- neuro_simulator/agent/memory/manager.py +370 -0
- neuro_simulator/agent/memory.py +137 -0
- neuro_simulator/agent/tools/__init__.py +4 -0
- neuro_simulator/agent/tools/core.py +112 -0
- neuro_simulator/agent/tools.py +69 -0
- neuro_simulator/builtin_agent.py +83 -0
- neuro_simulator/cli.py +45 -0
- neuro_simulator/config.py +217 -79
- neuro_simulator/config.yaml.example +16 -2
- neuro_simulator/letta.py +75 -46
- neuro_simulator/log_handler.py +30 -16
- neuro_simulator/main.py +177 -30
- neuro_simulator/process_manager.py +5 -2
- neuro_simulator/stream_manager.py +6 -0
- {neuro_simulator-0.0.3.dist-info → neuro_simulator-0.1.2.dist-info}/METADATA +21 -14
- neuro_simulator-0.1.2.dist-info/RECORD +31 -0
- {neuro_simulator-0.0.3.dist-info → neuro_simulator-0.1.2.dist-info}/WHEEL +1 -1
- neuro_simulator-0.0.3.dist-info/RECORD +0 -20
- {neuro_simulator-0.0.3.dist-info → neuro_simulator-0.1.2.dist-info}/entry_points.txt +0 -0
- {neuro_simulator-0.0.3.dist-info → neuro_simulator-0.1.2.dist-info}/top_level.txt +0 -0
neuro_simulator/__init__.py
CHANGED
@@ -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
|
+
]
|