| | --- |
| | 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!* π¦β¨ |