CoolFace
Apppublic

AIencoder/Axon-Llama-GUI

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes
README.md67 linesDownload Raw Back to root
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>