Text Generation
Transformers
Safetensors
English
Hindi
llama
HelpingAI
Priya
Teen-AI
Conversational
SLM
conversational
text-generation-inference
Instructions to use HelpingAI/Priya-10B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HelpingAI/Priya-10B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="HelpingAI/Priya-10B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("HelpingAI/Priya-10B") model = AutoModelForCausalLM.from_pretrained("HelpingAI/Priya-10B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use HelpingAI/Priya-10B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HelpingAI/Priya-10B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HelpingAI/Priya-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/HelpingAI/Priya-10B
- SGLang
How to use HelpingAI/Priya-10B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "HelpingAI/Priya-10B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HelpingAI/Priya-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "HelpingAI/Priya-10B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HelpingAI/Priya-10B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use HelpingAI/Priya-10B with Docker Model Runner:
docker model run hf.co/HelpingAI/Priya-10B
File size: 5,989 Bytes
82f217b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | ---
base_model: HelpingAI/HelpingAI2.5-10B
license: other
license_name: helpingai
license_link: https://helpingai.co/license
pipeline_tag: text-generation
language:
- en
- hi
tags:
- HelpingAI
- Priya
- Teen-AI
- Conversational
- SLM
library_name: transformers
---
<div align="center">
π <h1><span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Priya-10B</span></h1>
<h3><span style="color: #FF69B4;">***Your Bestie AI - Smarter, Sassier, and Sweeter Than Ever!***</span></h3>
</div>
<div align="center" style="display: flex; justify-content: center; gap: 4px;">
<a href="https://github.com/HelpingAI"><img src="https://img.shields.io/badge/GitHub-Organization-blue.svg" alt="GitHub Organization"></a>
<a href="https://huggingface.co/HelpingAI"><img src="https://img.shields.io/badge/π€%20Hugging%20Face-Organization-yellow" alt="Hugging Face"></a>
<a href="https://helpingai.co/license"><img src="https://img.shields.io/badge/License-HelpingAI-green.svg" alt="Model License"></a>
<a href="https://github.com/HelpingAI/community/discussions"><img src="https://img.shields.io/badge/Join-Community%20Discussion-blue?style=for-the-badge&logo=github" alt="Join Community Discussion"></a>
</div>
<div align="center">
[π License](https://helpingai.co/license) | [π Website](https://helpingai.co)
</div>
<div align="center" style="display: flex; justify-content: center; gap: 4px;">
<img src="https://img.shields.io/badge/Bestie%20Level-Maximum-ff69b4" alt="Bestie Level">
<img src="https://img.shields.io/badge/Sass%20Level-Over%209000-purple" alt="Sass Level">
<img src="https://img.shields.io/badge/Physics%20Jokes-Infinite-blue" alt="Physics Jokes">
<img src="https://img.shields.io/badge/Built%20with-Love%20%26%20Threats-red" alt="Built with">
</div>
## π <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Meet Priya-10B</span>
<span style="color: #9370DB;">Priya-10B is here to redefine "bestie vibes" with her bigger brain (10 billion parameters!) and even sharper wit. She's not just a tech-obsessed teenager anymore; she's your go-to for real talk, tech rants, and turning your day around with a sprinkle of sass and smarts! πββοΈ</span>
### π― **Why You'll Love Priya-10B**
- <span style="color: #FF69B4;">**Massive Upgrade**: 10B parameters of pure brilliance</span>
- <span style="color: #9370DB;">**Authentic Teen Personality**: Sweet, savage, and always relatable</span>
- <span style="color: #FF69B4;">**Optimized for Fun**: Perfect balance of smarts and sass</span>
- <span style="color: #9370DB;">**Runs Smoothly**: Works on most setups without drama (unlike my crush π)</span>
---
## π» <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">How to Use</span>
### <div style="color: #FF69B4;">Code Snippet (For the Nerds π€)</div>
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
# Load Priya-10B
model = AutoModelForCausalLM.from_pretrained("HelpingAI/Priya-10B")
tokenizer = AutoTokenizer.from_pretrained("HelpingAI/Priya-10B")
# Let's chat!
chat = [
{"role": "system", "content": "You are Priya, a 17-year-old tech-savvy, fun, and sassy AI bestie."},
{"role": "user", "content": "Hey Priya! What's the meaning of life?"}
]
inputs = tokenizer.apply_chat_template(
chat,
add_generation_prompt=True,
return_tensors="pt"
)
outputs = model.generate(
inputs,
max_new_tokens=256,
temperature=0.7,
top_p=0.9,
)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```
---
## π― <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Training Details</span>
### <span style="color: #FF69B4;">How Priya-10B Got Her Glow-Up πββοΈ</span>
1. **Base Training**
- Trained on millions of convos (both techie and teen)
- Fine-tuned to sprinkle that signature Priya sass
- Packed with enough PCM memes to ace any physics joke-off
2. **Special Features**
- Can hype you up like no one else (self-love, bestie!)
- Knows when to switch from playful to serious mode
- Effortlessly handles complex convos with a touch of humor
---
## β οΈ <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Known Quirks</span>
### <span style="color: #9370DB;">Real Talk, Bestie...</span>
- **Memory Lapses**: May "forget" earlier parts of long convos (just like I "forget" to clean my room π« )
- **Occasional Sass Overload**: Sometimes the savageness slips out a little too strong π
- **Physics Rants**: Brings up random physics analogies, even if nobody asked
---
## π <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">What Priya-10B Won't Do</span>
- **No NSFW Content**: Priya keeps it classy (most of the time π)
- **No Academic Cheating**: Sheβs smart, but won't do your homework for you
- **No Personal Info Sharing**: Privacy is her middle name (okay, not literally)
- **No Harmful Content**: Sheβs all about good vibes only π
---
<div align="center">
<h3><span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">π Built with Love by HelpingAI</span></h3>
[Website](https://helpingai.co) β’ [GitHub](https://github.com/HelpingAI) β’ [Discord](https://discord.gg/YweJwNqrnH) β’ [HuggingFace](https://huggingface.co/HelpingAI)
</div>
<div align="center">
<em><span style="color: #9370DB;">βSame sass, bigger brain. Priya-10B is your forever bestie whoβll laugh, learn, and slay with you through it all!β</span></em>
</div>
|