Logo Lanfrica

meligavincent/Mveng

Domain:

natural language processing

Record type:

software
Creator:
mel
Host:
🌍 African AI assistant powered by Axum + Whisper + Ollama. Digital griot sharing African stories, history & culture. Rooted in Cameroon's Yesum traditions. Named after scholar Engelbert Mveng. Your bridge to African wisdom. πŸ‡¨πŸ‡²βœ¨ # Mveng 🌍 African AI assistant powered by Axum + Whisper + Ollama. Digital griot sharing African stories, history & culture. Rooted in Cameroon's Yesum traditions. Named after scholar Engelbert Mveng. Your bridge to African wisdom. πŸ‡¨πŸ‡²βœ¨ # VoiceAI Assistant πŸŽ™οΈπŸ€– A conversational AI agent that processes voice input, transcribes it using OpenAI Whisper, generates responses with Ollama (open-source LLM), and provides both text and optional voice responses. ## πŸš€ Features - **Voice Input Processing**: Upload audio files for transcription - **Real-time Transcription**: Uses OpenAI Whisper for accurate speech-to-text - **Open Source LLM**: Powered by Ollama with Llama 2 or other open models - **RESTful API**: Built with Axum (Rust) for high performance - **Containerized**: Complete Docker Compose setup - **WebSocket Support**: Real-time conversation updates - **Multi-format Audio**: Supports WAV, MP3, M4A, and more - **Response Streaming**: Stream LLM responses in real-time ## πŸ—οΈ Architecture ``` β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Client App │───▢│ Axum Server │───▢│ Whisper Model β”‚ β”‚ (Web/Mobile) β”‚ β”‚ (Rust) β”‚ β”‚ (Transcription)β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β–Ό β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Ollama Server β”‚ β”‚ (Open Source LLM)β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ``` ## πŸ“‹ Prerequisites - Docker and Docker Compose - At least 8GB RAM (for LLM models) - NVIDIA GPU (optional, for faster inference) ## πŸ› οΈ Installation 1. **Clone the repository** ```bash git clone github.com cd voiceai-assistant ``` 2. **Start the services** ```bash docker-compose up -d ``` 3. **Pull the LLM model** (first run only) ```bash docker-compose exec ollama ollama pull llama2 ``` 4. **Verify installation** ```bash curl localhost ``` ## 🐳 Docker Services ### Core Services - **axum-server**: Main API server (Port 3000) - **whisper-service**: Speech-to-text …