CoolFace
Modelpublic

zeaipc/tanzeel-preview

sourceHugging Faceapache-2.0updated 10d agoView on Hugging Face
0likes66downloads
Model Card

Tanzeel Preview

Tanzeel Preview is a preview release by ZEAIPC (Zikr-e-Ameen Innovations & Programming Corporation), founded by Arman Ansari.

An early preview of the Tanzeel Intelligence family — a conversational AI optimized for Hindi, Hinglish, and English.

Usage

python
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("zeaipc/tanzeel-preview")
model = AutoModelForCausalLM.from_pretrained("zeaipc/tanzeel-preview")

messages = [
    {"role": "user", "content": "Namaste, kaise ho?"}
]

inputs = tokenizer.apply_chat_template(
    messages, add_generation_prompt=True, return_tensors="pt"
)
outputs = model.generate(inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

About ZEAIPC

ZEAIPC builds AI tools for the Indian market. Tanzeel is our conversational AI assistant.

  • —🌐 Website: https://tanzeelai.web.app
  • —👤 Founder: Arman Ansari
  • —🇮🇳 Made in India