AIencoder/Axon-Llama-GUI
0
1---2title: Axon Llama GUI3emoji: ๐ง 4colorFrom: blue5colorTo: purple6sdk: docker7pinned: true8license: mit9short_description: Multimodal AI - Text, Images & Audio powered by Qwen2.5-Omni10---11 12# ๐ง Axon - Multimodal AI Assistant13 14A powerful multimodal AI assistant powered by **Qwen2.5-Omni-7B** running on llama.cpp. Handles text, images, and audio all in one model!15 16## โจ Features17 18| Modality | Supported | Examples |19|----------|-----------|----------|20| ๐ฌ Text | โ
| Chat, Q&A, writing, reasoning, math |21| ๐ผ๏ธ Images | โ
| Describe images, read text, analyze charts |22| ๐ต Audio | โ
| Transcribe speech, analyze audio content |23 24## ๐ง Technical Details25 26- **Model:** [Qwen2.5-Omni-7B](https://huggingface.co/Qwen/Qwen2.5-Omni-7B)27- **Quantization:** Q8_0 (near-lossless quality)28- **Backend:** [llama.cpp](https://github.com/ggml-org/llama.cpp)29- **API:** OpenAI-compatible endpoints30 31## ๐ API Usage32 33The server exposes OpenAI-compatible endpoints:34```bash35# Text chat36curl http://localhost:7860/v1/chat/completions \37 -H "Content-Type: application/json" \38 -d '{39 "model": "qwen2.5-omni-7b",40 "messages": [{"role": "user", "content": "Hello!"}]41 }'42```43 44## ๐ Endpoints45 46| Endpoint | Description |47|----------|-------------|48| `/` | Web UI (llama.cpp chat interface) |49| `/v1/chat/completions` | OpenAI-compatible chat API |50| `/v1/models` | List available models |51| `/health` | Health check |52 53## ๐ Credits54 55- [Qwen Team](https://github.com/QwenLM) for Qwen2.5-Omni56- [ggml-org](https://github.com/ggml-org) for llama.cpp57- [Hugging Face](https://huggingface.co) for hosting58 59## ๐ License60 61MIT License - See [LICENSE](LICENSE) for details.62 63---64 65<p align="center">66 Made with โค๏ธ by <a href="https://huggingface.co/Alencoder">Alencoder</a>67</p>