fastmind 0.2.2__tar.gz → 0.2.3__tar.gz
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.
- {fastmind-0.2.2 → fastmind-0.2.3}/PKG-INFO +1 -1
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/contrib/api.py +1 -1
- {fastmind-0.2.2 → fastmind-0.2.3}/pyproject.toml +1 -1
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/README.md +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/__init__.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/contrib/__init__.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/app.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/engine.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/event.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/graph.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/node.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/perception.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/signal.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/state.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/tool.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/core/vla.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/utils/__init__.py +0 -0
- {fastmind-0.2.2 → fastmind-0.2.3}/fastmind/utils/logging.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastmind
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A lightweight, event-driven multi-agent framework for embodied AI systems
|
|
5
5
|
Project-URL: Homepage, https://github.com/kandada/fastmind
|
|
6
6
|
Project-URL: Documentation, https://github.com/kandada/fastmind#readme
|
|
@@ -150,7 +150,7 @@ class FastMindAPI:
|
|
|
150
150
|
if not session.is_alive:
|
|
151
151
|
raise RuntimeError(f"Session '{session_id}' is stopped")
|
|
152
152
|
|
|
153
|
-
cursor =
|
|
153
|
+
cursor = session._event_buffer.tail_cursor
|
|
154
154
|
while self._running and session.is_alive:
|
|
155
155
|
try:
|
|
156
156
|
events = await session._event_buffer.wait(cursor, timeout=1.0)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|