A basic debugging tool that provides real-time insights into system performance, resource utilization, and process management, with predictive insights on code and its debugging information.
- Real-time system monitoring (CPU, Memory)
- File server which reads file contents
- WebSocket-based real-time updates
- RESTful API endpoints
- Model running locally giving predictive insights on code
- Debugging insights predictied by model
- Visualizations for variable state changes
- Node.js (v14 or higher)
- Python 3.8 or higher
- npm or yarn package manager
- Install Node.js dependencies:
npm install- Set up Python virtual environment:
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txtqemi/- Main application codetest-cases/- Test suite for functional and system testingmodel-training/- LLM fine-tuning scripts
- Start the main application:
cd qemi && npm run start # On powershell: cd qemi; npm run start- Access the web interface at
http://localhost:3000
Run the test suite:
cd test-cases
py funtion_tests.py
py system_tests.pyMIT License - See LICENSE file for details