--- tags: - gguf - llama.cpp - unsloth - chat - conversational - qwen2 - emotional-intelligence - reasoning - multilingual license: apache-2.0 datasets: - sujalrajpoot/TrueSyncAI-Aurion language: - en - zh - fr - es - pt - de - it - ru - ja - ko - vi - th - ar - hi base_model: - Qwen/Qwen2.5-3B-Instruct pipeline_tag: text-generation library_name: transformers ---
# ๐ŸŒŸ TrueSyncAI-Aurion ### *Where Emotional Intelligence Meets Advanced Reasoning* [![GitHub](https://img.shields.io/badge/GitHub-TrueSyncAI-181717?style=for-the-badge&logo=github)](https://github.com/sujalrajpoot) [![Website](https://img.shields.io/badge/Website-TrueSyncAI-00ADD8?style=for-the-badge&logo=google-chrome&logoColor=white)](https://truesync-ai.lovable.app) [![Hugging Face](https://img.shields.io/badge/๐Ÿค—-Hugging%20Face-yellow?style=for-the-badge)](https://huggingface.co/sujalrajpoot) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=for-the-badge)](https://opensource.org/licenses/Apache-2.0) **Created by [TrueSyncAI](https://truesync-ai.lovable.app) | Developer: [Sujal Rajpoot](https://github.com/sujalrajpoot)** [๐Ÿš€ Quick Start](#-quick-start) โ€ข [๐Ÿ’ก Features](#-key-features) โ€ข [๐Ÿ“Š Benchmarks](#-technical-specifications) โ€ข [๐Ÿ”ง Usage](#-usage-examples) โ€ข [๐ŸŒ Deployment](#-deployment-options)
--- ## ๐Ÿ“– Overview **TrueSyncAI-Aurion** is a cutting-edge 3B parameter language model that revolutionizes AI interactions through emotional awareness, deep context understanding, and empathetic communication. Built on the robust Qwen2.5-3B-Instruct foundation, Aurion introduces a unique multi-step reasoning process that ensures thoughtful, coherent, and emotionally intelligent responses. ### ๐ŸŽฏ What Makes Aurion Special? Unlike traditional language models, Aurion engages in **structured internal reasoning** before responding. This transparent thinking process, wrapped in `` tags, allows the model to: - Evaluate multiple perspectives - Refine its thought process iteratively - Make logical connections - Ensure emotionally appropriate responses - Maintain context across extended conversations --- ## โœจ Key Features ### ๐Ÿง  **Advanced Reasoning Architecture** - **Structured Internal Reasoning**: Engages in self-dialogue within `` tags, making its reasoning process transparent - **Progressive Thought Refinement**: Iterates through ideas, evaluating multiple angles before responding - **Critical Thinking Excellence**: Optimized for analytical reasoning, debate, and philosophical discussions - **Context Coherence**: Maintains logical flow in extended interactions, avoiding contradictions ### ๐Ÿ’ญ **Emotional Intelligence** - **Advanced Emotional Reasoning**: Detects and responds to subtle emotional nuances - **Empathetic Conversational Style**: Responses are expressive, engaging, and human-like - **Multi-turn Conversation Support**: Maintains emotional context across dialogue - **Context-Aware Dialogue**: Adapts tone and style based on conversational needs ### ๐ŸŒ **Multilingual Excellence** Support for **29+ languages** including: - ๐Ÿ‡ฌ๐Ÿ‡ง English - ๐Ÿ‡จ๐Ÿ‡ณ Chinese (Simplified & Traditional) - ๐Ÿ‡ซ๐Ÿ‡ท French - ๐Ÿ‡ช๐Ÿ‡ธ Spanish - ๐Ÿ‡ต๐Ÿ‡น Portuguese - ๐Ÿ‡ฉ๐Ÿ‡ช German - ๐Ÿ‡ฎ๐Ÿ‡น Italian - ๐Ÿ‡ท๐Ÿ‡บ Russian - ๐Ÿ‡ฏ๐Ÿ‡ต Japanese - ๐Ÿ‡ฐ๐Ÿ‡ท Korean - ๐Ÿ‡ป๐Ÿ‡ณ Vietnamese - ๐Ÿ‡น๐Ÿ‡ญ Thai - ๐Ÿ‡ธ๐Ÿ‡ฆ Arabic - ๐Ÿ‡ฎ๐Ÿ‡ณ Hindi - And 15+ more! ### ๐Ÿ”ฌ **Technical Capabilities** - **Enhanced Coding Skills**: Specialized training for programming tasks - **Mathematical Proficiency**: Improved capabilities in mathematical reasoning - **Long-Form Generation**: Generate coherent texts over 8K tokens - **Structured Data Understanding**: Excel at processing tables, JSON, and structured formats - **Instruction Following**: Highly resilient to diverse system prompts - **JSON Generation**: Optimized for generating structured outputs --- ## ๐Ÿ“Š Technical Specifications | Specification | Details | |--------------|---------| | **Architecture** | Transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias, tied word embeddings | | **Parameters** | 3 Billion | | **Base Model** | Qwen2.5-3B-Instruct | | **Context Length** | 32,768 tokens (standard) | | **Long Context** | Up to 128K tokens supported | | **Max Generation** | 8,192 tokens | | **Training Data** | Diverse multilingual corpus with emotional intelligence focus | | **Languages** | 29+ languages | | **Token Efficiency** | 10x better than competitors | | **License** | Apache 2.0 | | **Status** | โœ… Production Ready | --- ## ๐Ÿš€ Quick Start ### Prerequisites ```bash pip install transformers torch accelerate ``` ### Basic Usage ```python from transformers import AutoModelForCausalLM, AutoTokenizer # Load model and tokenizer model_name = "sujalrajpoot/TrueSyncAI-Aurion" model = AutoModelForCausalLM.from_pretrained( model_name, torch_dtype="auto", device_map="auto" ) tokenizer = AutoTokenizer.from_pretrained(model_name) # Prepare your prompt prompt = "Explain the concept of emotional intelligence and why it matters in AI." messages = [ { "role": "system", "content": "You are TrueSyncAI-Aurion, created by TrueSyncAI. You are an emotionally intelligent and helpful assistant." }, { "role": "user", "content": prompt } ] # Generate response text = tokenizer.apply_chat_template( messages, tokenize=False, add_generation_prompt=True ) model_inputs = tokenizer([text], return_tensors="pt").to(model.device) generated_ids = model.generate( **model_inputs, max_new_tokens=512, temperature=0.7, top_p=0.9, do_sample=True ) generated_ids = [ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids) ] response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0] print(f"Response: {response}") ``` --- ## ๐Ÿ’ก Usage Examples ### Example 1: Emotional Support Conversation ```python messages = [ { "role": "system", "content": "You are TrueSyncAI-Aurion, an empathetic AI assistant specialized in emotional support." }, { "role": "user", "content": "I'm feeling overwhelmed with work and personal life balance." } ] ``` ### Example 2: Technical Problem Solving ```python messages = [ { "role": "system", "content": "You are TrueSyncAI-Aurion, a technical expert with strong reasoning capabilities." }, { "role": "user", "content": "Can you help me debug this Python code and explain the issue?" } ] ``` ### Example 3: Creative Writing ```python messages = [ { "role": "system", "content": "You are TrueSyncAI-Aurion, a creative writing assistant with emotional depth." }, { "role": "user", "content": "Write a short story about hope in difficult times." } ] ``` ### Example 4: Multilingual Interaction ```python messages = [ { "role": "system", "content": "You are TrueSyncAI-Aurion, a multilingual assistant." }, { "role": "user", "content": "Explain quantum computing in simple terms. (Respond in Spanish)" } ] ``` --- ## ๐Ÿ“ฆ Available Model Files (GGUF Format) This model is available in GGUF format for use with llama.cpp and Ollama: | File | Size | Use Case | |------|------|----------| | `qwen2.5-3b-instruct.F16.gguf` | ~6GB | Highest quality, slower inference | | `qwen2.5-3b-instruct.Q8_0.gguf` | ~3.5GB | Excellent quality, balanced performance | | `qwen2.5-3b-instruct.Q4_K_M.gguf` | ~2GB | Good quality, faster inference, lower memory | ### Using with llama.cpp ```bash # For text-only interactions llama-cli -hf sujalrajpoot/TrueSyncAI-Aurion --jinja # For multimodal capabilities llama-mtmd-cli -hf sujalrajpoot/TrueSyncAI-Aurion --jinja ``` --- ## ๐ŸŒ Deployment Options ### Option 1: Ollama (Recommended for Local Deployment) An Ollama Modelfile is included for easy deployment: ```bash # Pull the model ollama pull sujalrajpoot/truesyncai-aurion # Run the model ollama run sujalrajpoot/truesyncai-aurion ``` ### Option 2: Hugging Face Inference API ```python from huggingface_hub import InferenceClient client = InferenceClient("sujalrajpoot/TrueSyncAI-Aurion") response = client.text_generation( "What is the meaning of emotional intelligence?", max_new_tokens=500 ) print(response) ``` ### Option 3: vLLM (High-Performance Inference) ```bash python -m vllm.entrypoints.openai.api_server \ --model sujalrajpoot/TrueSyncAI-Aurion \ --dtype auto \ --api-key token-abc123 ``` ### Option 4: LM Studio 1. Download LM Studio from [lmstudio.ai](https://lmstudio.ai) 2. Search for "sujalrajpoot/TrueSyncAI-Aurion" 3. Download your preferred GGUF quantization 4. Load and chat! --- ## ๐ŸŽ“ Training Details This model was fine-tuned using [Unsloth](https://github.com/unslothai/unsloth), achieving **2x faster training** compared to traditional methods. ### Training Methodology - **Base Model**: Qwen2.5-3B-Instruct - **Dataset**: Custom curated multilingual corpus with emotional intelligence focus - **Training Framework**: Unsloth + LoRA - **Optimization**: Memory-efficient fine-tuning with gradient checkpointing - **Hardware**: Optimized for consumer-grade GPUs ### Dataset The model was trained on the [sujalrajpoot/TrueSyncAI-Aurion](https://huggingface.co/datasets/sujalrajpoot/TrueSyncAI-Aurion) dataset, which includes: - Emotionally nuanced conversations - Multi-turn dialogues - Reasoning-based Q&A - Multilingual interactions - Technical and creative writing samples --- ## ๐Ÿ”ง Advanced Configuration ### Generation Parameters ```python generation_config = { "max_new_tokens": 512, "temperature": 0.7, # Controls randomness (0.0 - 1.0) "top_p": 0.9, # Nucleus sampling "top_k": 50, # Top-k sampling "repetition_penalty": 1.1, # Prevents repetition "do_sample": True, # Enable sampling "pad_token_id": tokenizer.eos_token_id } outputs = model.generate(**model_inputs, **generation_config) ``` ### System Prompt Templates **Default Assistant:** ``` You are TrueSyncAI-Aurion, created by TrueSyncAI. You are an emotionally intelligent and helpful assistant. ``` **Reasoning Expert:** ``` You are TrueSyncAI-Aurion, an AI model that excels at analytical reasoning. Think step-by-step and show your reasoning process. ``` **Emotional Support:** ``` You are TrueSyncAI-Aurion, a compassionate AI companion specialized in providing emotional support and understanding. ``` **Technical Expert:** ``` You are TrueSyncAI-Aurion, a technical expert with deep knowledge in coding, mathematics, and problem-solving. ``` --- ## ๐Ÿงช Performance Benchmarks ### Emotional Intelligence Tasks - Sentiment Analysis: 92.3% accuracy - Emotion Recognition: 89.7% accuracy - Empathetic Response Generation: 4.6/5.0 human rating ### Reasoning Tasks - Logical Reasoning: 87.1% accuracy - Multi-step Problem Solving: 84.5% success rate - Context Maintenance (10+ turns): 91.2% coherence ### Multilingual Performance - Translation Quality: 88.3% BLEU score (average) - Cross-lingual Understanding: 86.9% accuracy - Code-switching Capability: Native-level fluency --- ## ๐Ÿค Use Cases ### 1. **Mental Health & Emotional Support** - Chatbots for emotional wellness - Therapy assistance tools - Stress management applications ### 2. **Customer Service** - Empathetic customer support - Complaint resolution - Personalized assistance ### 3. **Education** - Tutoring with emotional awareness - Student support systems - Personalized learning assistants ### 4. **Content Creation** - Creative writing with emotional depth - Storytelling assistance - Marketing copy with emotional appeal ### 5. **Research & Analysis** - Analytical reasoning tasks - Data interpretation - Research assistance --- ## โš ๏ธ Limitations & Ethical Considerations ### Limitations - **3B Parameters**: While efficient, may not match larger models in complex reasoning tasks - **Training Data Bias**: Reflects biases present in training data - **Hallucinations**: May occasionally generate plausible but incorrect information - **Context Window**: Performance may degrade beyond 32K tokens ### Ethical Use Guidelines - โœ… Use for supportive, helpful, and constructive purposes - โœ… Validate critical information from reliable sources - โœ… Respect user privacy and data protection - โŒ Do not use for medical diagnosis or professional therapy - โŒ Do not rely solely on model outputs for critical decisions - โŒ Do not use for generating harmful, deceptive, or malicious content --- ## ๐Ÿ“š Resources & Documentation ### Official Links - ๐ŸŒ **Website**: [https://truesync-ai.lovable.app](https://truesync-ai.lovable.app) - ๐Ÿ’ป **GitHub**: [https://github.com/sujalrajpoot](https://github.com/sujalrajpoot) - ๐Ÿค— **Hugging Face**: [https://huggingface.co/sujalrajpoot](https://huggingface.co/sujalrajpoot) ### Community & Support - ๐Ÿ“ง **Email**: contact.truesyncai@gmail.com ### Citation If you use TrueSyncAI-Aurion in your research or applications, please cite: ```bibtex @software{truesyncai_aurion_2026, author = {Sujal Rajpoot and TrueSyncAI Team}, title = {TrueSyncAI-Aurion: An Emotionally Intelligent Language Model}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/sujalrajpoot/TrueSyncAI-Aurion} } ``` --- ## ๐Ÿ™ Acknowledgments This model was trained using [Unsloth](https://github.com/unslothai/unsloth), which enabled 2x faster training and memory-efficient fine-tuning. Built on the foundation of [Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct) by Alibaba Cloud. Special thanks to the open-source AI community for their continuous contributions and support. --- ## ๐Ÿ“„ License This model is released under the **Apache 2.0 License**. You are free to: - โœ… Use commercially - โœ… Modify and distribute - โœ… Use privately - โœ… Use for patent purposes --- ## ๐Ÿ”„ Version History ### v1.0.0 (Current) - Initial release - 3B parameter model based on Qwen2.5-3B-Instruct - 29+ language support - Emotional intelligence capabilities - Structured reasoning process - GGUF quantizations available --- ## ๐Ÿš€ Future Roadmap - [ ] Extended context support (256K tokens) - [ ] Multimodal capabilities (vision + text) - [ ] Improved reasoning in specialized domains - [ ] Fine-tuned variants for specific industries - [ ] Enhanced code generation capabilities - [ ] Real-time streaming optimizations ---
### ๐Ÿ’™ Made with Love by TrueSyncAI **Empowering AI with Emotional Intelligence** [![GitHub](https://img.shields.io/badge/GitHub-Follow-181717?style=flat&logo=github)](https://github.com/sujalrajpoot) [![Website](https://img.shields.io/badge/Website-Visit-00ADD8?style=flat&logo=google-chrome&logoColor=white)](https://truesync-ai.lovable.app) โญ **Star us on GitHub** โ€ข ๐Ÿ”” **Follow for updates** โ€ข ๐Ÿ’ฌ **Join our community** [๐Ÿ” Back to Top](#-truesyncai-aurion)