aether-robotics 3.2.3__tar.gz → 3.2.4__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.
Files changed (89) hide show
  1. {aether_robotics-3.2.3/aether_robotics.egg-info → aether_robotics-3.2.4}/PKG-INFO +1 -1
  2. aether_robotics-3.2.4/VERSION +1 -0
  3. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/__init__.py +1 -1
  4. {aether_robotics-3.2.3 → aether_robotics-3.2.4/aether_robotics.egg-info}/PKG-INFO +1 -1
  5. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/pyproject.toml +1 -1
  6. aether_robotics-3.2.3/VERSION +0 -1
  7. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/LICENSE +0 -0
  8. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/MANIFEST.in +0 -0
  9. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/README.md +0 -0
  10. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/__main__.py +0 -0
  11. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/actions/__init__.py +0 -0
  12. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/actions/abstract_actions.py +0 -0
  13. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/adapters/__init__.py +0 -0
  14. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/adapters/base_adapter.py +0 -0
  15. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/adapters/drone_adapter.py +0 -0
  16. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/adapters/rover_adapter.py +0 -0
  17. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/adapters/universal_adapter.py +0 -0
  18. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/__init__.py +0 -0
  19. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/adaptation_agent.py +0 -0
  20. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/camera_agent.py +0 -0
  21. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/correction_agent.py +0 -0
  22. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/execution_agent.py +0 -0
  23. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/fault_agent.py +0 -0
  24. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/memory_agent.py +0 -0
  25. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/movement_agent.py +0 -0
  26. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/navigation_agent.py +0 -0
  27. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/perception_agent.py +0 -0
  28. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/planner_agent.py +0 -0
  29. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/power_agent.py +0 -0
  30. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/task_manager.py +0 -0
  31. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/agents/thermal_agent.py +0 -0
  32. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/app.py +0 -0
  33. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/capabilities/__init__.py +0 -0
  34. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/capabilities/capability_loader.py +0 -0
  35. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/__init__.py +0 -0
  36. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/auto_installer.py +0 -0
  37. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/auto_updater.py +0 -0
  38. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/banner.py +0 -0
  39. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/calibration.py +0 -0
  40. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/executor.py +0 -0
  41. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/feedback.py +0 -0
  42. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/goal_parser.py +0 -0
  43. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/llm_planner.py +0 -0
  44. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/mapper.py +0 -0
  45. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/memory.py +0 -0
  46. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/message_bus.py +0 -0
  47. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/metrics.py +0 -0
  48. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/navigation_engine.py +0 -0
  49. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/planner.py +0 -0
  50. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/task_scheduler.py +0 -0
  51. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/tool_builder.py +0 -0
  52. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/tool_discovery.py +0 -0
  53. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/tool_registry.py +0 -0
  54. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/core/visualizer.py +0 -0
  55. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/faults/__init__.py +0 -0
  56. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/faults/fault_detector.py +0 -0
  57. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/faults/fault_injector.py +0 -0
  58. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/simulation/__init__.py +0 -0
  59. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/simulation/environment.py +0 -0
  60. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/simulation/real_perception.py +0 -0
  61. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether/simulation/scenarios.py +0 -0
  62. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether_robotics.egg-info/SOURCES.txt +0 -0
  63. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether_robotics.egg-info/dependency_links.txt +0 -0
  64. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether_robotics.egg-info/entry_points.txt +0 -0
  65. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether_robotics.egg-info/requires.txt +0 -0
  66. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/aether_robotics.egg-info/top_level.txt +0 -0
  67. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/calibrated_camera_only_20260331_121709.json +0 -0
  68. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/calibrated_camera_only_20260331_122446.json +0 -0
  69. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/calibrated_camera_only_20260401_094544.json +0 -0
  70. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/calibrated_camera_only_20260401_094554.json +0 -0
  71. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/drone_v1.json +0 -0
  72. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/configs/rover_v1.json +0 -0
  73. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/context/aether_definitions.txt +0 -0
  74. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/install.sh +0 -0
  75. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/main.py +0 -0
  76. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/requirements.txt +0 -0
  77. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/setup.cfg +0 -0
  78. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_auto_updater.py +0 -0
  79. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_calibration.py +0 -0
  80. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_calibration_unit.py +0 -0
  81. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_chaos.py +0 -0
  82. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_mapper.py +0 -0
  83. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_navigation_engine.py +0 -0
  84. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_persistent_memory.py +0 -0
  85. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_security.py +0 -0
  86. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_task_scheduler.py +0 -0
  87. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_tool_builder.py +0 -0
  88. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_tool_discovery.py +0 -0
  89. {aether_robotics-3.2.3 → aether_robotics-3.2.4}/tests/test_yolo_integration.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aether-robotics
3
- Version: 3.2.3
3
+ Version: 3.2.4
4
4
  Summary: Autonomous multi-agent robotics system with DRL-First Hybrid FDIR
5
5
  Author: Chahel Paatur
6
6
  License: MIT
@@ -0,0 +1 @@
1
+ 3.2.4
@@ -1,2 +1,2 @@
1
- __version__ = "3.2.3"
1
+ __version__ = "3.2.4"
2
2
  __author__ = "Chahel Paatur"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aether-robotics
3
- Version: 3.2.3
3
+ Version: 3.2.4
4
4
  Summary: Autonomous multi-agent robotics system with DRL-First Hybrid FDIR
5
5
  Author: Chahel Paatur
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aether-robotics"
7
- version = "3.2.3"
7
+ version = "3.2.4"
8
8
  description = "Autonomous multi-agent robotics system with DRL-First Hybrid FDIR"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1 +0,0 @@
1
- 3.2.3
File without changes
File without changes