Arete OSS 3B 🧠❤️

An emotionally intelligent AI that actually listens.

Built by Iseer & Co. - Making AI that understands humans, not just language.

What makes Arete different?

Most AI assistants optimize for being "smart." Arete optimizes for being empathetic.

  • 🇧🇩 Speaks English and Bengali fluently
  • 💬 Trained on real emotional support conversations
  • 🎯 Recognizes when you're struggling and responds with care
  • 🌍 Understands cultural context (especially South Asian family dynamics)

3 billion parameters. Infinite empathy.

Try it

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("inanxr/Arete-OSS-3B")
tokenizer = AutoTokenizer.from_pretrained("inanxr/Arete-OSS-3B")

prompt = """Below is an instruction that describes a task. Write a response that appropriately completes the request.

### Instruction:
Respond with empathy and understanding to the following message.

### Input:
I'm feeling overwhelmed and don't know what to do.

### Response:
"""

inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=200, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month
26
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Datasets used to train inanxr/Arete-OSS-3B