Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -10,396 +10,85 @@ tags:
|
|
10 |
- education
|
11 |
- tutoring
|
12 |
- multilingual
|
13 |
-
- zamai
|
14 |
base_model: mistralai/Mistral-7B-Instruct-v0.1
|
15 |
pipeline_tag: text-generation
|
16 |
datasets:
|
17 |
- tasal9/Pashto-Dataset-Creating-Dataset
|
18 |
-
widget:
|
19 |
-
- text: "Hello, how can I help you today?"
|
20 |
-
example_title: "English Greeting"
|
21 |
-
- text: "Ψ³ΩΨ§Ω
ΩΨ±ΩΨ±ΩΨ Ϊ
ΩΪ«Ω ΫΨ§Ψ³ΨͺΨ"
|
22 |
-
example_title: "Pashto Greeting"
|
23 |
-
model-index:
|
24 |
-
- name: ZamAI-Mistral-7B-Pashto
|
25 |
-
results:
|
26 |
-
- task:
|
27 |
-
type: text-generation
|
28 |
-
name: Text Generation
|
29 |
-
dataset:
|
30 |
-
type: custom
|
31 |
-
name: Pashto Educational Dataset
|
32 |
-
metrics:
|
33 |
-
- type: accuracy
|
34 |
-
value: 92.5
|
35 |
-
name: Overall Accuracy
|
36 |
-
- type: bleu
|
37 |
-
value: 0.85
|
38 |
-
name: BLEU Score
|
39 |
---
|
40 |
|
41 |
# ZamAI-Mistral-7B-Pashto
|
42 |
|
43 |
-
|
44 |
-
<img src="https://huggingface.co/datasets/huggingface/brand-assets/resolve/main/hf-logo.png" alt="Hugging Face" width="100"/>
|
45 |
-
<h2>π Part of ZamAI Pro Models Strategy</h2>
|
46 |
-
<p><strong>Fine-tuned Mistral-7B for educational tutoring with Pashto language support</strong></p>
|
47 |
-
</div>
|
48 |
|
49 |
## π Model Overview
|
50 |
|
51 |
-
|
52 |
|
53 |
-
###
|
54 |
-
|
55 |
-
-
|
56 |
-
- π **Multilingual Support**: Optimized for Pashto (ps) and English (en)
|
57 |
- β‘ **High Performance**: Optimized for production deployment
|
58 |
-
- π **Enterprise-
|
59 |
-
- π± **Production-Ready**: Tested and deployed in real applications
|
60 |
-
- π **Educational Focus**: Designed for learning and cultural preservation
|
61 |
-
|
62 |
-
## π― Use Cases & Applications
|
63 |
-
|
64 |
-
This model excels in the following scenarios:
|
65 |
-
|
66 |
-
- **Educational Content Generation**: Advanced text generation capabilities
|
67 |
-
- **Pashto Language Tutoring**: Advanced text generation capabilities
|
68 |
-
- **Interactive Q&A Systems**: Advanced text generation capabilities
|
69 |
-
- **Cultural Learning Applications**: Advanced text generation capabilities
|
70 |
-
- **Academic Research Support**: Advanced text generation capabilities
|
71 |
-
|
72 |
-
### π Real-World Applications
|
73 |
|
74 |
-
|
75 |
-
- **π Business Automation**: Document processing, form analysis, and content generation
|
76 |
-
- **π€ Voice Applications**: Natural language understanding for voice assistants
|
77 |
-
- **ποΈ Cultural Preservation**: Supporting Pashto language technology and digital preservation
|
78 |
-
- **π Translation Services**: Cross-lingual communication and content localization
|
79 |
-
- **π€ Chatbot Development**: Building intelligent conversational agents
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
### π§ Installation
|
84 |
-
|
85 |
-
```bash
|
86 |
-
pip install transformers torch huggingface_hub
|
87 |
-
```
|
88 |
-
|
89 |
-
### π Basic Usage
|
90 |
|
91 |
```python
|
92 |
-
from transformers import AutoTokenizer,
|
93 |
-
from huggingface_hub import InferenceClient
|
94 |
|
95 |
-
# Method 1: Using Transformers (Local)
|
96 |
tokenizer = AutoTokenizer.from_pretrained("tasal9/ZamAI-Mistral-7B-Pashto")
|
97 |
-
model =
|
98 |
|
99 |
-
# Example
|
100 |
text = "Your input text here"
|
101 |
inputs = tokenizer(text, return_tensors="pt")
|
102 |
-
|
103 |
-
# Generate response
|
104 |
-
with torch.no_grad():
|
105 |
-
outputs = model.generate(
|
106 |
-
**inputs,
|
107 |
-
max_new_tokens=200,
|
108 |
-
temperature=0.7,
|
109 |
-
top_p=0.9,
|
110 |
-
pad_token_id=tokenizer.eos_token_id
|
111 |
-
)
|
112 |
-
|
113 |
-
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
114 |
-
print(response)
|
115 |
```
|
116 |
|
117 |
-
###
|
118 |
|
119 |
```python
|
120 |
from huggingface_hub import InferenceClient
|
121 |
|
122 |
-
# Initialize client
|
123 |
client = InferenceClient(token="your_hf_token")
|
124 |
|
125 |
-
# Generate text
|
126 |
response = client.text_generation(
|
127 |
model="tasal9/ZamAI-Mistral-7B-Pashto",
|
128 |
prompt="Your prompt here",
|
129 |
-
max_new_tokens=200
|
130 |
-
temperature=0.7,
|
131 |
-
top_p=0.9
|
132 |
-
)
|
133 |
-
|
134 |
-
print(response)
|
135 |
-
```
|
136 |
-
|
137 |
-
### π― Specialized Usage Examples
|
138 |
-
|
139 |
-
#### English Query
|
140 |
-
```python
|
141 |
-
prompt = "Explain the importance of renewable energy in simple terms:"
|
142 |
-
response = client.text_generation(
|
143 |
-
model="tasal9/ZamAI-Mistral-7B-Pashto",
|
144 |
-
prompt=prompt,
|
145 |
-
max_new_tokens=250,
|
146 |
-
temperature=0.7
|
147 |
-
)
|
148 |
-
```
|
149 |
-
|
150 |
-
#### Pashto Query
|
151 |
-
```python
|
152 |
-
prompt = "Ψ― Ψ¨Ψ΄ΩΎΪ ΩΎΩΪΨͺΩΩ: Ψ― Ϊ©Ψ±ΪΩΫ ΩΨ±Ψ§ΩΫ Ψ― Ϊ©Ψ±Ϊ©ΩΌΨ±ΩΩΩ ΩΎΩ Ψ§ΪΩ ΨͺΨ§Ψ³Ω Ϊ
Ω ΩΎΩΩ ΫΨ§Ψ³ΨͺΨ"
|
153 |
-
response = client.text_generation(
|
154 |
-
model="tasal9/ZamAI-Mistral-7B-Pashto",
|
155 |
-
prompt=prompt,
|
156 |
-
max_new_tokens=250,
|
157 |
-
temperature=0.7
|
158 |
-
)
|
159 |
-
```
|
160 |
-
|
161 |
-
## π§ Technical Specifications
|
162 |
-
|
163 |
-
| Specification | Details |
|
164 |
-
|---------------|---------|
|
165 |
-
| **Model Type** | Text Generation |
|
166 |
-
| **Base Model** | mistralai/Mistral-7B-Instruct-v0.1 |
|
167 |
-
| **Languages** | Pashto (ps), English (en) |
|
168 |
-
| **License** | MIT |
|
169 |
-
| **Context Length** | Variable (depends on base model) |
|
170 |
-
| **Parameters** | Optimized for efficiency |
|
171 |
-
| **Framework** | PyTorch, Transformers |
|
172 |
-
| **Deployment** | HF Inference API, Local, Docker |
|
173 |
-
|
174 |
-
## π Performance Metrics
|
175 |
-
|
176 |
-
| Metric | Score | Description |
|
177 |
-
|--------|-------|-------------|
|
178 |
-
| **Overall Accuracy** | 92.5% | Performance on Pashto evaluation dataset |
|
179 |
-
| **BLEU Score** | 0.85 | Translation and generation quality |
|
180 |
-
| **Cultural Relevance** | 95% | Appropriateness for Pashto cultural context |
|
181 |
-
| **Response Time** | <200ms | Average inference time via API |
|
182 |
-
| **Multilingual Score** | 89% | Cross-lingual understanding capability |
|
183 |
-
| **Coherence Score** | 91% | Logical flow and consistency |
|
184 |
-
|
185 |
-
## π Interactive Demo
|
186 |
-
|
187 |
-
Try the model instantly with our Gradio demos:
|
188 |
-
|
189 |
-
### π― Live Demos
|
190 |
-
- **[Complete Suite Demo](https://huggingface.co/spaces/tasal9/zamai-complete-suite)** - All models in one interface
|
191 |
-
- **[Individual Model Demo](https://huggingface.co/spaces/tasal9/zamai-mistral-7b-pashto)** - Focused interface for this model
|
192 |
-
|
193 |
-
### π API Endpoints
|
194 |
-
- **Inference API**: `https://api-inference.huggingface.co/models/tasal9/ZamAI-Mistral-7B-Pashto`
|
195 |
-
- **Model Hub**: `https://huggingface.co/tasal9/ZamAI-Mistral-7B-Pashto`
|
196 |
-
|
197 |
-
## π Deployment Options
|
198 |
-
|
199 |
-
### 1. π Hugging Face Inference API (Recommended)
|
200 |
-
```python
|
201 |
-
from huggingface_hub import InferenceClient
|
202 |
-
client = InferenceClient(token="your_token")
|
203 |
-
response = client.text_generation(model="tasal9/ZamAI-Mistral-7B-Pashto", prompt="Your prompt")
|
204 |
-
```
|
205 |
-
|
206 |
-
### 2. π₯οΈ Local Deployment
|
207 |
-
```bash
|
208 |
-
# Clone the model
|
209 |
-
git clone https://huggingface.co/tasal9/ZamAI-Mistral-7B-Pashto
|
210 |
-
cd ZamAI-Mistral-7B-Pashto
|
211 |
-
|
212 |
-
# Run with Python
|
213 |
-
python -c "
|
214 |
-
from transformers import pipeline
|
215 |
-
pipe = pipeline('text-generation', model='.')
|
216 |
-
print(pipe('Your prompt here'))
|
217 |
-
"
|
218 |
-
```
|
219 |
-
|
220 |
-
### 3. π³ Docker Deployment
|
221 |
-
```dockerfile
|
222 |
-
FROM python:3.9-slim
|
223 |
-
|
224 |
-
RUN pip install transformers torch
|
225 |
-
|
226 |
-
COPY . /app
|
227 |
-
WORKDIR /app
|
228 |
-
|
229 |
-
CMD ["python", "app.py"]
|
230 |
-
```
|
231 |
-
|
232 |
-
### 4. βοΈ Cloud Deployment
|
233 |
-
Compatible with major cloud platforms:
|
234 |
-
- **AWS SageMaker**
|
235 |
-
- **Google Cloud AI Platform**
|
236 |
-
- **Azure Machine Learning**
|
237 |
-
- **Hugging Face Spaces**
|
238 |
-
|
239 |
-
## π Model Training & Fine-tuning
|
240 |
-
|
241 |
-
### π― Training Data
|
242 |
-
- **Primary Dataset**: Custom Pashto educational content
|
243 |
-
- **Secondary Data**: Multilingual parallel corpora
|
244 |
-
- **Domain Focus**: Educational, cultural, and conversational content
|
245 |
-
- **Quality Assurance**: Human-reviewed and culturally validated
|
246 |
-
|
247 |
-
### π§ Fine-tuning Process
|
248 |
-
```python
|
249 |
-
from transformers import TrainingArguments, Trainer
|
250 |
-
|
251 |
-
# Example fine-tuning setup
|
252 |
-
training_args = TrainingArguments(
|
253 |
-
output_dir="./results",
|
254 |
-
num_train_epochs=3,
|
255 |
-
per_device_train_batch_size=4,
|
256 |
-
per_device_eval_batch_size=4,
|
257 |
-
warmup_steps=500,
|
258 |
-
weight_decay=0.01,
|
259 |
-
logging_dir="./logs",
|
260 |
-
)
|
261 |
-
|
262 |
-
# Initialize trainer
|
263 |
-
trainer = Trainer(
|
264 |
-
model=model,
|
265 |
-
args=training_args,
|
266 |
-
train_dataset=train_dataset,
|
267 |
-
eval_dataset=eval_dataset,
|
268 |
)
|
269 |
-
|
270 |
-
# Start training
|
271 |
-
trainer.train()
|
272 |
```
|
273 |
|
274 |
-
##
|
275 |
|
276 |
-
|
277 |
-
|
|
|
|
|
|
|
278 |
|
279 |
-
|
280 |
-
2. **Model Improvements**: Suggest architectural enhancements or optimizations
|
281 |
-
3. **Use Case Development**: Build applications and share success stories
|
282 |
-
4. **Bug Reports**: Help us identify and fix issues
|
283 |
-
5. **Documentation**: Improve guides and examples
|
284 |
|
285 |
-
|
286 |
-
- **Educational
|
287 |
-
- **Business
|
288 |
-
- **
|
289 |
-
- **
|
290 |
|
291 |
-
|
292 |
-
- **Downloads**: Track model adoption
|
293 |
-
- **Community Feedback**: User reviews and ratings
|
294 |
-
- **Performance Reports**: Real-world usage statistics
|
295 |
|
296 |
-
|
297 |
-
|
298 |
-
### π€ Other ZamAI Models
|
299 |
-
- [**ZamAI-Mistral-7B-Pashto**](https://huggingface.co/tasal9/ZamAI-Mistral-7B-Pashto) - Educational tutor
|
300 |
-
- [**ZamAI-Phi-3-Mini-Pashto**](https://huggingface.co/tasal9/ZamAI-Phi-3-Mini-Pashto) - Business assistant
|
301 |
-
- [**ZamAI-Whisper-v3-Pashto**](https://huggingface.co/tasal9/ZamAI-Whisper-v3-Pashto) - Speech recognition
|
302 |
-
- [**Multilingual-ZamAI-Embeddings**](https://huggingface.co/tasal9/Multilingual-ZamAI-Embeddings) - Text embeddings
|
303 |
-
- [**ZamAI-LLaMA3-Pashto**](https://huggingface.co/tasal9/ZamAI-LLaMA3-Pashto) - Advanced chat
|
304 |
-
- [**pashto-base-bloom**](https://huggingface.co/tasal9/pashto-base-bloom) - Lightweight model
|
305 |
-
|
306 |
-
### π Datasets
|
307 |
-
- [**Pashto-Dataset-Creating-Dataset**](https://huggingface.co/datasets/tasal9/Pashto-Dataset-Creating-Dataset) - Training data
|
308 |
-
|
309 |
-
### π Platform Links
|
310 |
-
- **Organization**: [tasal9](https://huggingface.co/tasal9)
|
311 |
-
- **Complete Demo**: [ZamAI Suite](https://huggingface.co/spaces/tasal9/zamai-complete-suite)
|
312 |
-
|
313 |
-
## π Support & Contact
|
314 |
-
|
315 |
-
### π Getting Help
|
316 |
- π§ **Email**: [email protected]
|
317 |
- π **Website**: [zamai.ai](https://zamai.ai)
|
318 |
-
-
|
319 |
-
- π¬ **Community Forum**: [community.zamai.ai](https://community.zamai.ai)
|
320 |
-
- π **GitHub**: [github.com/zamai-ai](https://github.com/zamai-ai)
|
321 |
|
322 |
-
|
323 |
-
For enterprise deployments, custom fine-tuning, or integration assistance:
|
324 |
-
- π§ **Enterprise**: [email protected]
|
325 |
-
- π **Phone**: +1-XXX-XXX-XXXX
|
326 |
-
- πΌ **Consulting**: [zamai.ai/consulting](https://zamai.ai/consulting)
|
327 |
|
328 |
-
|
329 |
-
|
330 |
-
If you use this model in your research or applications, please cite:
|
331 |
-
|
332 |
-
```bibtex
|
333 |
-
@misc{zamai-zamai-mistral-7b-pashto-2024,
|
334 |
-
title={ZamAI-Mistral-7B-Pashto: Fine-tuned Mistral-7B for educational tutoring with Pashto language support},
|
335 |
-
author={ZamAI Team},
|
336 |
-
year={2024},
|
337 |
-
url={https://huggingface.co/tasal9/ZamAI-Mistral-7B-Pashto},
|
338 |
-
note={ZamAI Pro Models Strategy - Multilingual AI Platform},
|
339 |
-
publisher={Hugging Face}
|
340 |
-
}
|
341 |
-
```
|
342 |
-
|
343 |
-
### π Academic Papers
|
344 |
-
```bibtex
|
345 |
-
@article{zamai2024multilingual,
|
346 |
-
title={Advancing Multilingual AI: The ZamAI Pro Models Strategy for Pashto Language Technology},
|
347 |
-
author={ZamAI Research Team},
|
348 |
-
journal={Journal of Multilingual AI},
|
349 |
-
year={2024},
|
350 |
-
volume={1},
|
351 |
-
pages={1--15}
|
352 |
-
}
|
353 |
-
```
|
354 |
-
|
355 |
-
## π License & Terms
|
356 |
-
|
357 |
-
### π License
|
358 |
-
This model is licensed under the **MIT License**:
|
359 |
-
|
360 |
-
- β
**Commercial Use**: Allowed for business applications
|
361 |
-
- β
**Modification**: Can be modified and improved
|
362 |
-
- β
**Distribution**: Can be redistributed
|
363 |
-
- β
**Private Use**: Allowed for personal projects
|
364 |
-
- β οΈ **Attribution Required**: Credit must be given to ZamAI
|
365 |
-
|
366 |
-
### π Terms of Use
|
367 |
-
1. **Responsible AI**: Use ethically and responsibly
|
368 |
-
2. **No Harmful Content**: Do not generate harmful or offensive content
|
369 |
-
3. **Privacy**: Respect user privacy and data protection laws
|
370 |
-
4. **Cultural Sensitivity**: Be respectful of Pashto culture and language
|
371 |
-
5. **Compliance**: Follow local laws and regulations
|
372 |
-
|
373 |
-
### π‘οΈ Limitations & Disclaimers
|
374 |
-
- Model outputs should be reviewed for accuracy
|
375 |
-
- Not suitable for critical decision-making without human oversight
|
376 |
-
- May have biases inherited from training data
|
377 |
-
- Performance may vary across different domains
|
378 |
-
|
379 |
-
## π Changelog & Updates
|
380 |
-
|
381 |
-
| Version | Date | Changes |
|
382 |
-
|---------|------|---------|
|
383 |
-
| **v1.0** | 2025-07-05 | Initial release with enhanced Pashto support |
|
384 |
-
| **v1.1** | TBD | Performance optimizations and bug fixes |
|
385 |
-
| **v2.0** | TBD | Extended language support and new features |
|
386 |
-
|
387 |
-
### π Update Schedule
|
388 |
-
- **Monthly**: Performance monitoring and minor improvements
|
389 |
-
- **Quarterly**: Feature updates and enhancements
|
390 |
-
- **Annually**: Major version releases with significant improvements
|
391 |
|
392 |
---
|
393 |
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
<p>
|
398 |
-
<a href="https://zamai.ai">π Website</a> β’
|
399 |
-
<a href="https://huggingface.co/tasal9">π€ Models</a> β’
|
400 |
-
<a href="https://community.zamai.ai">π¬ Community</a> β’
|
401 |
-
<a href="mailto:[email protected]">π§ Support</a>
|
402 |
-
</p>
|
403 |
-
<p><em>Last Updated: 2025-07-05 21:15:46 UTC</em></p>
|
404 |
-
<p><em>Model Card Version: 2.0</em></p>
|
405 |
-
</div>
|
|
|
10 |
- education
|
11 |
- tutoring
|
12 |
- multilingual
|
|
|
13 |
base_model: mistralai/Mistral-7B-Instruct-v0.1
|
14 |
pipeline_tag: text-generation
|
15 |
datasets:
|
16 |
- tasal9/Pashto-Dataset-Creating-Dataset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
---
|
18 |
|
19 |
# ZamAI-Mistral-7B-Pashto
|
20 |
|
21 |
+
Fine-tuned Mistral-7B for educational tutoring with Pashto language support
|
|
|
|
|
|
|
|
|
22 |
|
23 |
## π Model Overview
|
24 |
|
25 |
+
This model is part of the **ZamAI Pro Models Strategy** - a comprehensive AI platform designed for multilingual applications with specialized focus on Pashto language support.
|
26 |
|
27 |
+
### Key Features
|
28 |
+
- π§ **Advanced AI**: Based on mistralai/Mistral-7B-Instruct-v0.1 architecture
|
29 |
+
- π **Multilingual**: Optimized for Pashto and English
|
|
|
30 |
- β‘ **High Performance**: Optimized for production deployment
|
31 |
+
- π **Secure**: Enterprise-grade security and privacy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
## π Usage
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
### Basic Usage with Transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
```python
|
38 |
+
from transformers import AutoTokenizer, AutoModel
|
|
|
39 |
|
|
|
40 |
tokenizer = AutoTokenizer.from_pretrained("tasal9/ZamAI-Mistral-7B-Pashto")
|
41 |
+
model = AutoModel.from_pretrained("tasal9/ZamAI-Mistral-7B-Pashto")
|
42 |
|
43 |
+
# Example usage
|
44 |
text = "Your input text here"
|
45 |
inputs = tokenizer(text, return_tensors="pt")
|
46 |
+
outputs = model(**inputs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
```
|
48 |
|
49 |
+
### Usage with Hugging Face Inference API
|
50 |
|
51 |
```python
|
52 |
from huggingface_hub import InferenceClient
|
53 |
|
|
|
54 |
client = InferenceClient(token="your_hf_token")
|
55 |
|
|
|
56 |
response = client.text_generation(
|
57 |
model="tasal9/ZamAI-Mistral-7B-Pashto",
|
58 |
prompt="Your prompt here",
|
59 |
+
max_new_tokens=200
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
)
|
|
|
|
|
|
|
61 |
```
|
62 |
|
63 |
+
## π§ Technical Details
|
64 |
|
65 |
+
- **Model Type**: text-generation
|
66 |
+
- **Base Model**: mistralai/Mistral-7B-Instruct-v0.1
|
67 |
+
- **Languages**: Pashto (ps), English (en)
|
68 |
+
- **License**: MIT
|
69 |
+
- **Training**: Fine-tuned on Pashto educational and cultural content
|
70 |
|
71 |
+
## π Applications
|
|
|
|
|
|
|
|
|
72 |
|
73 |
+
This model powers:
|
74 |
+
- **ZamAI Educational Platform**: Pashto language tutoring
|
75 |
+
- **Business Automation**: Document processing and analysis
|
76 |
+
- **Voice Assistants**: Natural language understanding
|
77 |
+
- **Cultural Preservation**: Supporting Pashto language technology
|
78 |
|
79 |
+
## π Support
|
|
|
|
|
|
|
80 |
|
81 |
+
For support and integration assistance:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
- π§ **Email**: [email protected]
|
83 |
- π **Website**: [zamai.ai](https://zamai.ai)
|
84 |
+
- π¬ **Community**: [ZamAI Community](https://community.zamai.ai)
|
|
|
|
|
85 |
|
86 |
+
## π License
|
|
|
|
|
|
|
|
|
87 |
|
88 |
+
Licensed under the MIT License.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
---
|
91 |
|
92 |
+
**Part of the ZamAI Pro Models Strategy - Transforming AI for Multilingual Applications** π
|
93 |
+
|
94 |
+
*Updated: 2025-07-05 21:29:09 UTC*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|