Replace your ENTIRE README with this updated polished version.
An interactive Artificial Intelligence visualization platform implementing uninformed search algorithms, reflex agents, and the Eight Queens problem using Python and Streamlit.
- Breadth-First Search (BFS)
- Depth-First Search (DFS)
- Depth-Limited Search (DLS)
- Iterative Deepening DFS (IDDFS)
- Eight Queens problem visualization
- Reflex-based AQI agent
- Runtime and explored-state analysis
- Interactive Streamlit dashboard
- Algorithm comparison charts
- Python
- Streamlit
- Matplotlib
- Pandas
AI-Search-Agent-Visualizer/
├── aqi_agent/
├── docs/
├── eight_queens/
├── screenshots/
│ ├── dashboard-overview.png
│ ├── search-results.png
│ └── algorithm-comparison.png
├── search/
├── visualizer.py
├── README.md
├── requirements.txt
└── .gitignore
Clone repository:
git clone https://github.com/MARIO-SNH/AI-Search-Agent-Visualizer.gitEnter project folder:
cd AI-Search-Agent-VisualizerCreate virtual environment:
python -m venv venvActivate virtual environment (Windows PowerShell):
.\venv\Scripts\Activate.ps1Install


