File size: 630 Bytes
e184b95
b1982e3
 
 
 
f5a0e69
14449aa
 
e184b95
14449aa
 
e184b95
14449aa
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from transformers import pipeline
generator = pipeline("text-generation", model="mistralai/Mixtral-8x7B-Instruct-v0.1")  # هذا مفتوح المصدر
result = generator("ما هو الذكاء الاصطناعي؟", max_new_tokens=100)
print(result[0]['generated_text'])


# تسجيل الدخول
login(token=os.environ["HUGGINGFACE_HUB_TOKEN"])

# تحميل النموذج
generator = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.1")

# استخدام النموذج (مثال)
output = generator("ما هو الذكاء الاصطناعي؟", max_new_tokens=100)
print(output[0]['generated_text'])