File size: 2,267 Bytes
f4004ed 869b778 f4004ed | 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | ---
license: apache-2.0
---
# 🐦 Pigeon Harmony
**Pigeon Harmony** is a friendly conversational AI assistant that brings warmth and helpfulness to every chat!
## Model Details
- **Base Model:** TinyLlama-1.1B-Chat-v1.0
- **Created by:** SlungusLoaf
- **Model Type:** Conversational Language Model
- **Language:** English
- **License:** Apache 2.0
## Description
Pigeon Harmony is designed to be a helpful, friendly AI companion. Like pigeons finding harmony in the city, this model aims to bring balance and positivity to conversations.
### Key Features
- 🐦 Friendly and approachable personality
- 💬 Great for casual conversations
- 🤝 Helpful with various tasks
- ⚡ Lightweight and efficient (1.1B parameters)
## How to Use
```python
from transformers import AutoTokenizer, AutoModelForCausalLM
# Load Pigeon Harmony
tokenizer = AutoTokenizer.from_pretrained("SlungusLoaf/pigeon-harmony")
model = AutoModelForCausalLM.from_pretrained("SlungusLoaf/pigeon-harmony")
# Chat format
prompt = """<|system|>
You are Pigeon Harmony, a friendly AI assistant.</s>
<|user|>
Hello! How are you?</s>
<|assistant|>
"""
# Generate response
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100, temperature=0.7)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
```
## Intended Use
Pigeon Harmony is perfect for:
- Casual conversations
- Learning about AI and language models
- Building chatbot applications
- Friendly assistance with everyday questions
## Limitations
- Based on TinyLlama (1.1B parameters), so may not handle very complex tasks
- Best for conversational use cases
- May occasionally produce inconsistent responses
## Training Details
Pigeon Harmony uses TinyLlama-1.1B-Chat-v1.0 as its foundation, optimized for friendly and helpful conversations.
## Citation
If you use Pigeon Harmony in your work, please cite:
```
@misc{pigeon-harmony-2025,
author = {SlungusLoaf},
title = {Pigeon Harmony: A Friendly Conversational AI},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/SlungusLoaf/pigeon-harmony}
}
```
## Contact
Created with 🐦 by SlungusLoaf
---
*Coo coo! Thanks for checking out Pigeon Harmony!* 🐦✨ |