Insight360 is an advanced analytical tool providing comprehensive data integration, real-time analytics, predictive modeling, and scenario planning for various industries. It is designed to be modular and expandable, allowing for the addition of various components and features such as regenerative AI, an AI assistant, market vision analysis, strategy simplification, and user learning AI.
Insight360/
├── docs/
│ └── README.md
├── src/
│ ├── backend/
│ │ ├── ai/
│ │ │ ├── regenerative_ai.py
│ │ │ ├── assistant/
│ │ │ │ ├── __init__.py
│ │ │ │ └── assistant.py
│ │ │ ├── market_vision/
│ │ │ │ ├── __init__.py
│ │ │ │ └── market_vision.py
│ │ │ └── strategy_simplifier/
│ │ │ ├── __init__.py
│ │ │ └── strategy_simplifier.py
│ │ ├── main.py
│ │ └── utils.py
│ ├── frontend/
│ │ ├── public/
│ │ ├── src/
│ │ │ ├── components/
│ │ │ │ ├── AIComponents/
│ │ │ │ │ └── AssistantComponent.js
│ │ │ │ ├── MarketVisionComponents/
│ │ │ │ │ └── MarketVisionComponent.js
│ │ │ │ ├── StrategySimplifierComponents/
│ │ │ │ │ └── StrategySimplifierComponent.js
│ │ │ └── App.js
│ └── shared/
│ └── utils.py
├── tests/
│ ├── backend/
│ │ ├── test_regenerative_ai.py
│ │ ├── test_assistant.py
│ │ ├── test_market_vision.py
│ │ └── test_strategy_simplifier.py
│ ├── frontend/
│ │ └── test_components/
│ │ └── test_AIComponents.js
│ ├── integration/
│ │ └── test_integration.py
│ └── e2e/
│ └── test_e2e.py
├── .github/
│ ├── workflows/
│ │ └── ci.yml
├── .gitignore
├── requirements.txt
└── README.md