by: Abhishek Kevin Gomes
U.AI (Unified AI Taskforce) is a multimodal AI system designed to unify information retrieval, command execution, and patch management into a single intelligent interface.
It demonstrates how multiple agents can be orchestrated together to handle:
- Video → Knowledge pipeline (transcription + semantic search)
- Audio & PDF semantic chat agent (RAG for documents)
- Voice-driven command execution (safe demo environment)
- Patch management assistant (mock showcase)
- Unified multimodal interface (voice, text, video, audio, image)
- Extract audio with FFmpeg
- Transcribe via OpenAI Whisper
- Embed with HuggingFace MiniLM
- Store in ChromaDB for semantic Q&A
- Parse PDFs with PyPDF
- Transcribe audio → text
- Store embeddings in ChromaDB
- Provide contextual answers with GPT
- Record or type queries
- Interpret with GPT
- Execute with mock safe outputs
- AI-powered patch recommendations
- System diagnostics + remediation demo
┌──────────────┐
│ Frontend │
│ (Web + Voice)│
└──────┬───────┘
│
┌─────────▼──────────┐
│ Backend API │
│ (FastAPI) │
└─────────┬──────────┘
│
┌─────────────┴─────────────┐
│ AI Agents │
│ • RAG Search Agent │
│ • Executor Agent │
│ • Patch Specialist Agent │
│ • Multimodal Orchestrator │
└─────────────┬─────────────┘
│
┌───────────▼───────────┐
│ Knowledge Stores │
│ (ChromaDB, PDFs, │
│ Audio, Video) │
└───────────────────────┘
- Enterprise IT Operations – automate patching + system checks
- Knowledge Management – searchable transcripts of training/videos
- DevOps & SecOps – AI-driven patch/security suggestions
- Content Accessibility – captions + semantic search
- Unified AI Assistant – multimodal collaboration for teams
git clone https://github.com/your-username/u.ai.git
cd u.aipip install -r requirements.txtCreate a .env file:
OPENAI_API_KEY=your-keypython app.py- Demo project only — executor + patching agents are mock/safe
- API keys are excluded (load them via
.env)





