AI-driven platform for managing, training, and evaluating intelligent agents for business automation and code review.
- Frontend: React + Tailwind + Socket.io
- Backend: Python FastAPI + Celery + Redis
- AI Engine: LangChain + OpenAI / Llama / Ollama
- Database: PostgreSQL
- Object Storage: S3 / local uploads
- User Management: Login, roluri (admin, engineer, AI reviewer)
- Agent Creator: Create AI agents with different purposes
- Task Dispatcher: Send code, text, or data for analysis
- Evaluation Engine: Run AI and calculate scores
- History & Reports: Show complete history + results + PDF export
- Real-Time Feedback: Stream of responses via WebSocket
- Admin Dashboard: Graph with AI performance and scores over time
# Backend
cd aion-backend
python -m venv venv
source venv/bin/activate # Pe Windows: venv\Scripts\activate
pip install -r requirements.txt
# Frontend
cd aion-frontend
npm install# Backend
cd aion-backend
uvicorn main:app --reload
# Celery Worker
celery -A worker worker --loglevel=info
# Frontend
cd aion-frontend
npm start
```#