File size: 1,089 Bytes
7495782
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: bigcode-openrail-m
---
---
license: bigcode-openrail-m
tags:
  - islam
  - chatbot
  - quran
  - muslim-ai
  - agent
---

# 🕌 AgentMusim

**AgentMusim** is an AI agent designed for the global Muslim community. It provides answers to faith-based questions, helps with prayer timings, and integrates culturally relevant knowledge using modern language models.

## ✨ Features
- Quranic Q&A
- Hadith reference support
- Prayer times (based on location)
- Fasting calendar
- General Islamic assistant

## 🧠 Model Details
- Base model: `Mistral` / `LLaMA2` / `Phi-2` (specify)
- Fine-tuned on Islamic QA datasets and trusted sources.
- Trained using the `bigcode-openrail-m` license guidelines.

## 🤖 Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("likhonsheikh/AgentMusim")
model = AutoModelForCausalLM.from_pretrained("likhonsheikh/AgentMusim")

inputs = tokenizer("Who was the first Prophet in Islam?", return_tensors="pt")
outputs = model.generate(**inputs)
print(tokenizer.decode(outputs[0]))