ra3-advisor 1.0.0__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.
- ra3_advisor-1.0.0/LICENSE +21 -0
- ra3_advisor-1.0.0/PKG-INFO +99 -0
- ra3_advisor-1.0.0/README.md +62 -0
- ra3_advisor-1.0.0/ra3_advisor.egg-info/PKG-INFO +99 -0
- ra3_advisor-1.0.0/ra3_advisor.egg-info/SOURCES.txt +8 -0
- ra3_advisor-1.0.0/ra3_advisor.egg-info/dependency_links.txt +1 -0
- ra3_advisor-1.0.0/ra3_advisor.egg-info/requires.txt +14 -0
- ra3_advisor-1.0.0/ra3_advisor.egg-info/top_level.txt +1 -0
- ra3_advisor-1.0.0/setup.cfg +4 -0
- ra3_advisor-1.0.0/setup.py +37 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Muqarab Nazir
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ra3-advisor
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Reality-Aware Autonomous Advisor: A Neuro-Symbolic AI Framework
|
|
5
|
+
Home-page: https://github.com/muqarab-nazir/ra3_advisor
|
|
6
|
+
Author: Muqarab Nazir
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: fastapi
|
|
15
|
+
Requires-Dist: uvicorn
|
|
16
|
+
Requires-Dist: pydantic
|
|
17
|
+
Requires-Dist: numpy
|
|
18
|
+
Requires-Dist: pandas
|
|
19
|
+
Requires-Dist: opencv-python
|
|
20
|
+
Requires-Dist: torch
|
|
21
|
+
Requires-Dist: torchvision
|
|
22
|
+
Requires-Dist: stable-baselines3
|
|
23
|
+
Requires-Dist: river
|
|
24
|
+
Requires-Dist: python-dotenv
|
|
25
|
+
Requires-Dist: websockets
|
|
26
|
+
Requires-Dist: ultralytics
|
|
27
|
+
Requires-Dist: pyttsx3
|
|
28
|
+
Dynamic: author
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
37
|
+
|
|
38
|
+
# RA³: Reality-Aware Autonomous Advisor
|
|
39
|
+
|
|
40
|
+
[](https://opensource.org/licenses/MIT)
|
|
41
|
+
[](https://www.python.org/downloads/)
|
|
42
|
+
[]()
|
|
43
|
+
|
|
44
|
+
RA³ is a modular framework for autonomous intelligence that bridges the gap between statistical machine learning and symbolic logic. Developed by **Muqarab Nazir**, this framework is designed to sense reality, reason through logic, and act safely in physical environments.
|
|
45
|
+
|
|
46
|
+
### 📄 Official Docs
|
|
47
|
+
- **Research Paper**: [RESEARCH_PAPER.md](./RESEARCH_PAPER.md)
|
|
48
|
+
- **LinkedIn Strategy**: [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md)
|
|
49
|
+
|
|
50
|
+
## 🧠 Core Methodology
|
|
51
|
+
|
|
52
|
+
RA³ operates on a continuous **SENSE → REASON → ACT → LEARN** loop:
|
|
53
|
+
|
|
54
|
+
1. **Multimodal Perception**: Real-time integration of visual feeds, vibration sensors, and proximity data.
|
|
55
|
+
2. **Neuro-Symbolic Reasoning**: Logical inference engines that check autonomous decisions against strict safety rules.
|
|
56
|
+
3. **Actionable Decision Layer**: A hybrid system that balances goal optimization with safety-first fallbacks.
|
|
57
|
+
4. **Online Learning**: Continual adaptation to environmental changes using incremental machine learning (River/Avalanche).
|
|
58
|
+
|
|
59
|
+
## 🚀 Key Features
|
|
60
|
+
|
|
61
|
+
- **Grounded Vision (Path A)**: Real-time YOLOv8 object detection integrated directly into reasoning.
|
|
62
|
+
- **Goal Pursuit Engine (Path B)**: Autonomous navigation with dynamic steering and interactive tactical radar.
|
|
63
|
+
- **Safety Interlocks (Path C)**: Automatic pausing, evidence snapshotting, and manual reset protocols.
|
|
64
|
+
- **Voice Intelligence (Path D)**: Real-time verbal feedback on system status and reasoning alerts.
|
|
65
|
+
- **A* Tactical Pathfinding (Path E)**: Advanced waypoint generation for navigating complex obstacle fields.
|
|
66
|
+
- **ROS2 Bridge (Path F)**: Standardized messaging for physical hardware integration.
|
|
67
|
+
- **Transparent Autonomy**: Logic logs explain *why* an action was taken, down to the symbolic rule.
|
|
68
|
+
- **Mission Control Dashboard**: A high-fidelity, real-time visualization of the AI's "thought process."
|
|
69
|
+
|
|
70
|
+
## 🛠️ Tech Stack
|
|
71
|
+
|
|
72
|
+
- **Reasoning**: Neuro-Symbolic Logic, Logic Tensor Networks.
|
|
73
|
+
- **Learning**: River (Online Machine Learning), Stable Baselines3 (RL).
|
|
74
|
+
- **Backend**: FastAPI, WebSockets, Python.
|
|
75
|
+
- **Dashboard**: React 19, Vite, Tailwind CSS, Framer Motion, Recharts.
|
|
76
|
+
|
|
77
|
+
## 📖 Get Started
|
|
78
|
+
|
|
79
|
+
### Prerequisites
|
|
80
|
+
- Python 3.10+
|
|
81
|
+
- Node.js & npm
|
|
82
|
+
|
|
83
|
+
### Installation & Execution
|
|
84
|
+
See the [Walkthrough Guide](file:///C:/Users/SIA/.gemini/antigravity/brain/0bf852da-dc0c-4278-b108-283b49653e77/walkthrough.md) for detailed setup instructions.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 🔬 Research & Publication
|
|
89
|
+
The theoretical foundations and technical architecture of the RA³ framework are detailed in the [RESEARCH_PAPER.md](./RESEARCH_PAPER.md).
|
|
90
|
+
|
|
91
|
+
## 🚀 Public Launch & Branding
|
|
92
|
+
For a guide on recording a demo and the official LinkedIn launch strategy, see [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md).
|
|
93
|
+
|
|
94
|
+
## 🤝 Contribution
|
|
95
|
+
RA³ is an open framework. We welcome researchers and engineers to contribute to the evolution of grounded, logical autonomy.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
**Founder & Architect**: Muqarab Nazir
|
|
99
|
+
**Lead Implementation**: Antigravity
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# RA³: Reality-Aware Autonomous Advisor
|
|
2
|
+
|
|
3
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
|
+
[](https://www.python.org/downloads/)
|
|
5
|
+
[]()
|
|
6
|
+
|
|
7
|
+
RA³ is a modular framework for autonomous intelligence that bridges the gap between statistical machine learning and symbolic logic. Developed by **Muqarab Nazir**, this framework is designed to sense reality, reason through logic, and act safely in physical environments.
|
|
8
|
+
|
|
9
|
+
### 📄 Official Docs
|
|
10
|
+
- **Research Paper**: [RESEARCH_PAPER.md](./RESEARCH_PAPER.md)
|
|
11
|
+
- **LinkedIn Strategy**: [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md)
|
|
12
|
+
|
|
13
|
+
## 🧠 Core Methodology
|
|
14
|
+
|
|
15
|
+
RA³ operates on a continuous **SENSE → REASON → ACT → LEARN** loop:
|
|
16
|
+
|
|
17
|
+
1. **Multimodal Perception**: Real-time integration of visual feeds, vibration sensors, and proximity data.
|
|
18
|
+
2. **Neuro-Symbolic Reasoning**: Logical inference engines that check autonomous decisions against strict safety rules.
|
|
19
|
+
3. **Actionable Decision Layer**: A hybrid system that balances goal optimization with safety-first fallbacks.
|
|
20
|
+
4. **Online Learning**: Continual adaptation to environmental changes using incremental machine learning (River/Avalanche).
|
|
21
|
+
|
|
22
|
+
## 🚀 Key Features
|
|
23
|
+
|
|
24
|
+
- **Grounded Vision (Path A)**: Real-time YOLOv8 object detection integrated directly into reasoning.
|
|
25
|
+
- **Goal Pursuit Engine (Path B)**: Autonomous navigation with dynamic steering and interactive tactical radar.
|
|
26
|
+
- **Safety Interlocks (Path C)**: Automatic pausing, evidence snapshotting, and manual reset protocols.
|
|
27
|
+
- **Voice Intelligence (Path D)**: Real-time verbal feedback on system status and reasoning alerts.
|
|
28
|
+
- **A* Tactical Pathfinding (Path E)**: Advanced waypoint generation for navigating complex obstacle fields.
|
|
29
|
+
- **ROS2 Bridge (Path F)**: Standardized messaging for physical hardware integration.
|
|
30
|
+
- **Transparent Autonomy**: Logic logs explain *why* an action was taken, down to the symbolic rule.
|
|
31
|
+
- **Mission Control Dashboard**: A high-fidelity, real-time visualization of the AI's "thought process."
|
|
32
|
+
|
|
33
|
+
## 🛠️ Tech Stack
|
|
34
|
+
|
|
35
|
+
- **Reasoning**: Neuro-Symbolic Logic, Logic Tensor Networks.
|
|
36
|
+
- **Learning**: River (Online Machine Learning), Stable Baselines3 (RL).
|
|
37
|
+
- **Backend**: FastAPI, WebSockets, Python.
|
|
38
|
+
- **Dashboard**: React 19, Vite, Tailwind CSS, Framer Motion, Recharts.
|
|
39
|
+
|
|
40
|
+
## 📖 Get Started
|
|
41
|
+
|
|
42
|
+
### Prerequisites
|
|
43
|
+
- Python 3.10+
|
|
44
|
+
- Node.js & npm
|
|
45
|
+
|
|
46
|
+
### Installation & Execution
|
|
47
|
+
See the [Walkthrough Guide](file:///C:/Users/SIA/.gemini/antigravity/brain/0bf852da-dc0c-4278-b108-283b49653e77/walkthrough.md) for detailed setup instructions.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## 🔬 Research & Publication
|
|
52
|
+
The theoretical foundations and technical architecture of the RA³ framework are detailed in the [RESEARCH_PAPER.md](./RESEARCH_PAPER.md).
|
|
53
|
+
|
|
54
|
+
## 🚀 Public Launch & Branding
|
|
55
|
+
For a guide on recording a demo and the official LinkedIn launch strategy, see [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md).
|
|
56
|
+
|
|
57
|
+
## 🤝 Contribution
|
|
58
|
+
RA³ is an open framework. We welcome researchers and engineers to contribute to the evolution of grounded, logical autonomy.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
**Founder & Architect**: Muqarab Nazir
|
|
62
|
+
**Lead Implementation**: Antigravity
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ra3-advisor
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Reality-Aware Autonomous Advisor: A Neuro-Symbolic AI Framework
|
|
5
|
+
Home-page: https://github.com/muqarab-nazir/ra3_advisor
|
|
6
|
+
Author: Muqarab Nazir
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: fastapi
|
|
15
|
+
Requires-Dist: uvicorn
|
|
16
|
+
Requires-Dist: pydantic
|
|
17
|
+
Requires-Dist: numpy
|
|
18
|
+
Requires-Dist: pandas
|
|
19
|
+
Requires-Dist: opencv-python
|
|
20
|
+
Requires-Dist: torch
|
|
21
|
+
Requires-Dist: torchvision
|
|
22
|
+
Requires-Dist: stable-baselines3
|
|
23
|
+
Requires-Dist: river
|
|
24
|
+
Requires-Dist: python-dotenv
|
|
25
|
+
Requires-Dist: websockets
|
|
26
|
+
Requires-Dist: ultralytics
|
|
27
|
+
Requires-Dist: pyttsx3
|
|
28
|
+
Dynamic: author
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: description-content-type
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
37
|
+
|
|
38
|
+
# RA³: Reality-Aware Autonomous Advisor
|
|
39
|
+
|
|
40
|
+
[](https://opensource.org/licenses/MIT)
|
|
41
|
+
[](https://www.python.org/downloads/)
|
|
42
|
+
[]()
|
|
43
|
+
|
|
44
|
+
RA³ is a modular framework for autonomous intelligence that bridges the gap between statistical machine learning and symbolic logic. Developed by **Muqarab Nazir**, this framework is designed to sense reality, reason through logic, and act safely in physical environments.
|
|
45
|
+
|
|
46
|
+
### 📄 Official Docs
|
|
47
|
+
- **Research Paper**: [RESEARCH_PAPER.md](./RESEARCH_PAPER.md)
|
|
48
|
+
- **LinkedIn Strategy**: [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md)
|
|
49
|
+
|
|
50
|
+
## 🧠 Core Methodology
|
|
51
|
+
|
|
52
|
+
RA³ operates on a continuous **SENSE → REASON → ACT → LEARN** loop:
|
|
53
|
+
|
|
54
|
+
1. **Multimodal Perception**: Real-time integration of visual feeds, vibration sensors, and proximity data.
|
|
55
|
+
2. **Neuro-Symbolic Reasoning**: Logical inference engines that check autonomous decisions against strict safety rules.
|
|
56
|
+
3. **Actionable Decision Layer**: A hybrid system that balances goal optimization with safety-first fallbacks.
|
|
57
|
+
4. **Online Learning**: Continual adaptation to environmental changes using incremental machine learning (River/Avalanche).
|
|
58
|
+
|
|
59
|
+
## 🚀 Key Features
|
|
60
|
+
|
|
61
|
+
- **Grounded Vision (Path A)**: Real-time YOLOv8 object detection integrated directly into reasoning.
|
|
62
|
+
- **Goal Pursuit Engine (Path B)**: Autonomous navigation with dynamic steering and interactive tactical radar.
|
|
63
|
+
- **Safety Interlocks (Path C)**: Automatic pausing, evidence snapshotting, and manual reset protocols.
|
|
64
|
+
- **Voice Intelligence (Path D)**: Real-time verbal feedback on system status and reasoning alerts.
|
|
65
|
+
- **A* Tactical Pathfinding (Path E)**: Advanced waypoint generation for navigating complex obstacle fields.
|
|
66
|
+
- **ROS2 Bridge (Path F)**: Standardized messaging for physical hardware integration.
|
|
67
|
+
- **Transparent Autonomy**: Logic logs explain *why* an action was taken, down to the symbolic rule.
|
|
68
|
+
- **Mission Control Dashboard**: A high-fidelity, real-time visualization of the AI's "thought process."
|
|
69
|
+
|
|
70
|
+
## 🛠️ Tech Stack
|
|
71
|
+
|
|
72
|
+
- **Reasoning**: Neuro-Symbolic Logic, Logic Tensor Networks.
|
|
73
|
+
- **Learning**: River (Online Machine Learning), Stable Baselines3 (RL).
|
|
74
|
+
- **Backend**: FastAPI, WebSockets, Python.
|
|
75
|
+
- **Dashboard**: React 19, Vite, Tailwind CSS, Framer Motion, Recharts.
|
|
76
|
+
|
|
77
|
+
## 📖 Get Started
|
|
78
|
+
|
|
79
|
+
### Prerequisites
|
|
80
|
+
- Python 3.10+
|
|
81
|
+
- Node.js & npm
|
|
82
|
+
|
|
83
|
+
### Installation & Execution
|
|
84
|
+
See the [Walkthrough Guide](file:///C:/Users/SIA/.gemini/antigravity/brain/0bf852da-dc0c-4278-b108-283b49653e77/walkthrough.md) for detailed setup instructions.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 🔬 Research & Publication
|
|
89
|
+
The theoretical foundations and technical architecture of the RA³ framework are detailed in the [RESEARCH_PAPER.md](./RESEARCH_PAPER.md).
|
|
90
|
+
|
|
91
|
+
## 🚀 Public Launch & Branding
|
|
92
|
+
For a guide on recording a demo and the official LinkedIn launch strategy, see [LINKEDIN_STRATEGY.md](./LINKEDIN_STRATEGY.md).
|
|
93
|
+
|
|
94
|
+
## 🤝 Contribution
|
|
95
|
+
RA³ is an open framework. We welcome researchers and engineers to contribute to the evolution of grounded, logical autonomy.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
**Founder & Architect**: Muqarab Nazir
|
|
99
|
+
**Lead Implementation**: Antigravity
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="ra3-advisor",
|
|
5
|
+
version="1.0.0",
|
|
6
|
+
author="Muqarab Nazir",
|
|
7
|
+
author_author_email="", # Add email if desired
|
|
8
|
+
description="Reality-Aware Autonomous Advisor: A Neuro-Symbolic AI Framework",
|
|
9
|
+
long_description=open("README.md", encoding="utf-8").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/muqarab-nazir/ra3_advisor", # Placeholder
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
include_package_data=True,
|
|
14
|
+
install_requires=[
|
|
15
|
+
"fastapi",
|
|
16
|
+
"uvicorn",
|
|
17
|
+
"pydantic",
|
|
18
|
+
"numpy",
|
|
19
|
+
"pandas",
|
|
20
|
+
"opencv-python",
|
|
21
|
+
"torch",
|
|
22
|
+
"torchvision",
|
|
23
|
+
"stable-baselines3",
|
|
24
|
+
"river",
|
|
25
|
+
"python-dotenv",
|
|
26
|
+
"websockets",
|
|
27
|
+
"ultralytics",
|
|
28
|
+
"pyttsx3"
|
|
29
|
+
],
|
|
30
|
+
classifiers=[
|
|
31
|
+
"Programming Language :: Python :: 3",
|
|
32
|
+
"License :: OSI Approved :: MIT License",
|
|
33
|
+
"Operating System :: OS Independent",
|
|
34
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
35
|
+
],
|
|
36
|
+
python_requires='>=3.10',
|
|
37
|
+
)
|